oizys/modules/essentials.nix

27 lines
290 B
Nix
Raw Normal View History

2024-06-10 11:55:14 -05:00
{
pkgs,
self,
enabled,
...
}:
2024-01-23 11:51:13 -06:00
{
2024-05-06 14:32:00 -05:00
imports = with self.nixosModules; [ git ];
2024-06-10 11:55:14 -05:00
programs.zsh = enabled;
2024-06-11 15:20:40 -05:00
programs.fish = enabled;
2024-01-23 11:51:13 -06:00
environment.systemPackages = with pkgs; [
tmux
unzip
2024-05-16 11:56:55 -05:00
zip
2024-01-23 11:51:13 -06:00
less
gnumake
gcc
2024-06-10 11:55:14 -05:00
file
2024-01-23 11:51:13 -06:00
jq
wget
curl
htop
];
}