summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/nethoscope.nix
blob: f73d7320819e9cfd5b4ddf0b6e40c37ea90e92a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.programs.nethoscope;
in
{
  meta.maintainers = with lib.maintainers; [ _0x4A6F ];

  options = {
    programs.nethoscope = {
      enable = lib.mkOption {
        type = lib.types.bool;
        default = false;
        description = ''
          Whether to add nethoscope to the global environment and configure a
          setcap wrapper for it.
        '';
      };
    };
  };

  config = lib.mkIf cfg.enable {
    environment.systemPackages = with pkgs; [ nethoscope ];
    security.wrappers.nethoscope = {
      source = "${pkgs.nethoscope}/bin/nethoscope";
      capabilities = "cap_net_raw,cap_net_admin=eip";
    };
  };
}