From bf348c1b686dcec3e02f487a4cb02222433e9cce Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Wed, 2 Oct 2024 14:32:55 -0400 Subject: [PATCH] 261 current 2024-10-02 14:32:47 24.11.20240916.99dc878 6.11.0 * --- boxes/desktop/configuration.nix | 4 ++++ common/programs/wireshark.nix | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 common/programs/wireshark.nix diff --git a/boxes/desktop/configuration.nix b/boxes/desktop/configuration.nix index 19ec55a..c3b38b4 100644 --- a/boxes/desktop/configuration.nix +++ b/boxes/desktop/configuration.nix @@ -6,6 +6,7 @@ let _v = import ../../common/programs/virt.nix { }; + wireshark = import ../../common/programs/wireshark.nix {}; in { fileSystems."/mnt/d" = { @@ -153,6 +154,9 @@ in + programs = { + inherit wireshark; + }; programs.zsh.enable = true; programs.steam.enable = true; programs.steam.extraCompatPackages = with pkgs; [ diff --git a/common/programs/wireshark.nix b/common/programs/wireshark.nix new file mode 100644 index 0000000..b8cb878 --- /dev/null +++ b/common/programs/wireshark.nix @@ -0,0 +1,3 @@ +{} : { + enable = true; +}