treewide: remove AndersonTorres from maintainers (#360012)
[NixPkgs.git] / nixos / modules / programs / nethoscope.nix
blob7bc1f61b31eae51b57c82953a50c8e58df17f65a
1 { config, lib, pkgs, ... }:
3 let cfg = config.programs.nethoscope;
4 in
6   meta.maintainers = with lib.maintainers; [ _0x4A6F ];
8   options = {
9     programs.nethoscope = {
10       enable = lib.mkOption {
11         type = lib.types.bool;
12         default = false;
13         description = ''
14           Whether to add nethoscope to the global environment and configure a
15           setcap wrapper for it.
16         '';
17       };
18     };
19   };
21   config = lib.mkIf cfg.enable {
22     environment.systemPackages = with pkgs; [ nethoscope ];
23     security.wrappers.nethoscope = {
24       source = "${pkgs.nethoscope}/bin/nethoscope";
25       capabilities = "cap_net_raw,cap_net_admin=eip";
26     };
27   };