oizys/modules/essentials.nix
2024-12-12 15:31:51 -06:00

23 lines
255 B
Nix

{
pkgs,
self,
enabled,
...
}:
{
imports = with self.nixosModules; [ git ];
programs.zsh = enabled;
environment.systemPackages = with pkgs; [
tmux
unzip
zip
less
gnumake
gcc
file
wget
curl
htop
];
}