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; +}