oizys/modules/dev.nix

26 lines
265 B
Nix
Raw Normal View History

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