From 991b4d6bd15e2ab93b1b1f2a900c40f585cb7ad9 Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 30 Jan 2024 11:40:28 +0100 Subject: [PATCH] hosts/astatine: enable remote wireshark capture --- hosts/astatine/configuration.nix | 1 + hosts/astatine/programs.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 hosts/astatine/programs.nix diff --git a/hosts/astatine/configuration.nix b/hosts/astatine/configuration.nix index a269063..f4e3906 100644 --- a/hosts/astatine/configuration.nix +++ b/hosts/astatine/configuration.nix @@ -6,6 +6,7 @@ ./hardware-configuration.nix ./ppp.nix + ./programs.nix ./users.nix ]; diff --git a/hosts/astatine/programs.nix b/hosts/astatine/programs.nix new file mode 100644 index 0000000..f1e97de --- /dev/null +++ b/hosts/astatine/programs.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +{ + + environment.systemPackages = with pkgs; [ + tcpdump # for remote wireshark + ]; + +}