1
0
Fork 0
mirror of https://github.com/daylinmorgan/oizys.git synced 2025-01-09 14:37:32 -06:00
oizys/modules/essentials.nix
2024-06-16 16:20:59 -05:00

25 lines
263 B
Nix

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