separate system packages from user packages
This commit is contained in:
@@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user