1
1
Fork 0

wireshark: fix gui package

Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
Myned 2024-09-11 18:21:59 -05:00
parent 478bb904b5
commit 9f92539135
Signed by: myned
GPG key ID: C7224454F7881A34

View file

@ -10,7 +10,10 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
# https://gitlab.com/wireshark/wireshark # https://gitlab.com/wireshark/wireshark
programs.wireshark.enable = true; programs.wireshark = {
enable = true;
package = pkgs.wireshark; # GUI
};
users.users.${config.custom.username}.extraGroups = [ "wireshark" ]; users.users.${config.custom.username}.extraGroups = [ "wireshark" ];
}; };