oizys/modules/development/dev.nix

24 lines
245 B
Nix

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