separate system packages from user packages

This commit is contained in:
nicknase27
2026-07-26 12:31:35 +02:00
parent a7ce2b4c71
commit f9810da223
2 changed files with 10 additions and 8 deletions
-8
View File
@@ -1,20 +1,12 @@
{pkgs, inputs, ...}: { {pkgs, inputs, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
inputs.agenix.packages."${stdenv.hostPlatform.system}".default inputs.agenix.packages."${stdenv.hostPlatform.system}".default
neovim
wget wget
curl curl
git git
fastfetch
rsync rsync
starship
eza
net-tools net-tools
alejandra alejandra
nixd nixd
yazi
dysk
tmux
btop
]; ];
} }
+10
View File
@@ -3,5 +3,15 @@
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = ["wheel"]; extraGroups = ["wheel"];
packages = with pkgs; [
neovim
fastfetch
starship
eza
yazi
dysk
tmux
btop
];
}; };
} }