Files
clan-core/nixosModules/clanCore/packages.nix
2024-10-29 13:53:46 +01:00

23 lines
429 B
Nix

{ pkgs, ... }:
{
pkgs,
lib,
config,
...
}:
{
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`
# needed to deploy via `clan machines update` if the flake has a git input
pkgs.gitMinimal
];
}