2017-02-16 20:53:09 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.wireshark;
|
|
|
|
wireshark = cfg.package;
|
2017-02-17 12:15:59 +00:00
|
|
|
in {
|
2017-02-16 20:53:09 +00:00
|
|
|
options = {
|
|
|
|
programs.wireshark = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to add Wireshark to the global environment and configure a
|
2017-02-17 12:15:59 +00:00
|
|
|
setcap wrapper for 'dumpcap' for users in the 'wireshark' group.
|
2017-02-16 20:53:09 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.wireshark-cli;
|
|
|
|
defaultText = "pkgs.wireshark-cli";
|
|
|
|
description = ''
|
|
|
|
Which Wireshark package to install in the global environment.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ wireshark ];
|
2018-06-29 23:58:35 +00:00
|
|
|
users.groups.wireshark = {};
|
2017-02-17 12:15:59 +00:00
|
|
|
|
2017-02-16 20:53:09 +00:00
|
|
|
security.wrappers.dumpcap = {
|
|
|
|
source = "${wireshark}/bin/dumpcap";
|
2017-02-17 12:15:59 +00:00
|
|
|
capabilities = "cap_net_raw+p";
|
2017-02-16 20:53:09 +00:00
|
|
|
owner = "root";
|
|
|
|
group = "wireshark";
|
|
|
|
permissions = "u+rx,g+x";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|