clanCore: install essential tools for debugging
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
./zerotier
|
./zerotier
|
||||||
./meshnamed
|
./meshnamed
|
||||||
./networking.nix
|
./networking.nix
|
||||||
|
./packages.nix
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
# just some example options. Can be removed later
|
# just some example options. Can be removed later
|
||||||
./vm.nix
|
./vm.nix
|
||||||
|
|||||||
10
nixosModules/clanCore/packages.nix
Normal file
10
nixosModules/clanCore/packages.nix
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{ pkgs, ... }: {
|
||||||
|
# essential debugging tools for networked services
|
||||||
|
environment.systemPackages = [
|
||||||
|
pkgs.dnsutils
|
||||||
|
pkgs.tcpdump
|
||||||
|
pkgs.curl
|
||||||
|
pkgs.jq
|
||||||
|
pkgs.htop
|
||||||
|
];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user