1
0
Fork 0
mirror of https://github.com/daylinmorgan/oizys.git synced 2025-01-09 02:17:32 -06:00
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
];
}