Refactor a bit by adding globally shared packages in one file
This commit is contained in:
parent
d111828131
commit
7e7baef730
4 changed files with 43 additions and 28 deletions
31
nixos/shared/packages/configuration.nix
Normal file
31
nixos/shared/packages/configuration.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Custom tools
|
||||
dvd
|
||||
dvt
|
||||
|
||||
# System tools
|
||||
age
|
||||
git
|
||||
git-filter-repo
|
||||
home-manager
|
||||
htop
|
||||
neofetch
|
||||
oh-my-zsh
|
||||
rsync
|
||||
wget
|
||||
zsh
|
||||
|
||||
# System libraries
|
||||
noto-fonts
|
||||
noto-fonts-emoji-blob-bin
|
||||
noto-fonts-emoji
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue