oizys/modules/development/dev.nix

24 lines
245 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
pkgs,
self,
2024-01-23 11:51:13 -06:00
...
}: {
imports = with self.nixosModules; [
2024-01-23 11:51:13 -06:00
git
];
programs.zsh.enable = true;
environment.systemPackages = with pkgs; [
tmux
unzip
less
gnumake
gcc
jq
wget
curl
htop
];
}