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

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