oizys/modules/development/dev.nix

19 lines
233 B
Nix
Raw Normal View History

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