Files
nix/modules/software/essentials.nix
2026-03-03 15:05:38 -06:00

26 lines
411 B
Nix

{
den.aspects.essentials = {
nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
comma
fastfetch
git
home-manager
inetutils
micro
nh
nil
nixd
nixfmt
nix-index
nix-output-monitor
nix-prefetch
nvd
psmisc
tree
unzip
wget
];
};
};
}