From 5bc48d33a34be498e155895fab9d6e8e8075f5f3 Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Mon, 16 Mar 2026 13:33:08 +0000 Subject: [PATCH] nixos: Add tcpdump on all machines --- nixos/modules/common.nix | 1 + nixos/modules/server.nix | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/modules/common.nix b/nixos/modules/common.nix index 0873a04..c1be423 100644 --- a/nixos/modules/common.nix +++ b/nixos/modules/common.nix @@ -139,6 +139,7 @@ in bash-completion git unzip + tcpdump ] (mkIf config.services.netdata.enable [ netdata ]) ]; diff --git a/nixos/modules/server.nix b/nixos/modules/server.nix index 462ab86..0dee932 100644 --- a/nixos/modules/server.nix +++ b/nixos/modules/server.nix @@ -36,10 +36,6 @@ in }; documentation.nixos.enable = mkDefault' false; - - environment.systemPackages = with pkgs; [ - tcpdump - ]; }; meta.buildDocsInSandbox = false;