about summary refs log tree commit diff
path: root/nixos/modules/programs/nethoscope.nix
blob: 7bc1f61b31eae51b57c82953a50c8e58df17f65a (plain) (blame)
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
{ 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";
    };
  };
}