1
1
Fork 0
nixos/options/custom/programs/wireshark.nix
Myned 9f92539135
wireshark: fix gui package
Signed-off-by: Myned <dev@bjork.tech>
2024-09-12 19:41:21 -05:00

20 lines
410 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.custom.programs.wireshark;
in
{
options.custom.programs.wireshark.enable = mkOption { default = false; };
config = mkIf cfg.enable {
# https://gitlab.com/wireshark/wireshark
programs.wireshark = {
enable = true;
package = pkgs.wireshark; # GUI
};
users.users.${config.custom.username}.extraGroups = [ "wireshark" ];
};
}