clan-core/nixosModules/clanCore/packages.nix

14 lines
286 B
Nix
Raw Normal View History

2024-03-17 18:48:49 +00:00
{ pkgs, ... }:
{
environment.systemPackages = [
# essential debugging tools for networked services
pkgs.dnsutils
pkgs.tcpdump
pkgs.curl
pkgs.jq
pkgs.htop
# needed to deploy via `clan machines update` if the flake has a git input
pkgs.gitMinimal
];
}