18 lines
355 B
Nix
18 lines
355 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;
|
||
|
|
||
|
users.users.${config.custom.username}.extraGroups = [ "wireshark" ];
|
||
|
};
|
||
|
}
|