the condition was actually the wrong way around and we still need git in nix for some operations.
19 lines
303 B
Nix
19 lines
303 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = [
|
|
# essential debugging tools for networked services
|
|
pkgs.dnsutils
|
|
pkgs.tcpdump
|
|
pkgs.curl
|
|
pkgs.jq
|
|
pkgs.htop
|
|
|
|
pkgs.nixos-facter # for `clan machines update-hardware-config --backend nixos-facter`
|
|
|
|
pkgs.gitMinimal
|
|
];
|
|
}
|