1
1
Fork 0
nixos/options/custom/programs/wireshark.nix

22 lines
418 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
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"];
};
}