clanCore: install essential tools for debugging

This commit is contained in:
Jörg Thalheim 2023-11-16 13:46:13 +01:00
parent 978d9efd7e
commit d2fecd0a94
2 changed files with 11 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./zerotier
./meshnamed
./networking.nix
./packages.nix
inputs.sops-nix.nixosModules.sops
# just some example options. Can be removed later
./vm.nix

View File

@ -0,0 +1,10 @@
{ pkgs, ... }: {
# essential debugging tools for networked services
environment.systemPackages = [
pkgs.dnsutils
pkgs.tcpdump
pkgs.curl
pkgs.jq
pkgs.htop
];
}