diff --git a/options/custom/programs/wireshark.nix b/options/custom/programs/wireshark.nix index dd92f18..0114056 100644 --- a/options/custom/programs/wireshark.nix +++ b/options/custom/programs/wireshark.nix @@ -10,7 +10,10 @@ in config = mkIf cfg.enable { # https://gitlab.com/wireshark/wireshark - programs.wireshark.enable = true; + programs.wireshark = { + enable = true; + package = pkgs.wireshark; # GUI + }; users.users.${config.custom.username}.extraGroups = [ "wireshark" ]; };