From 9f925391352401a1551ac869c4d6cb6a14703805 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 11 Sep 2024 18:21:59 -0500 Subject: [PATCH] wireshark: fix gui package Signed-off-by: Myned --- options/custom/programs/wireshark.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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" ]; };