nixpkgs/nixos/modules/programs/traceroute.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
542 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
2020-01-17 21:25:34 +00:00
let
cfg = config.programs.traceroute;
in
{
2020-01-17 21:25:34 +00:00
options = {
programs.traceroute = {
enable = lib.mkOption {
type = lib.types.bool;
2020-01-17 21:25:34 +00:00
default = false;
description = ''
Whether to configure a setcap wrapper for traceroute.
'';
};
};
};
config = lib.mkIf cfg.enable {
2020-01-17 21:25:34 +00:00
security.wrappers.traceroute = {
owner = "root";
group = "root";
2020-01-17 21:25:34 +00:00
capabilities = "cap_net_raw+p";
2024-11-18 16:28:45 +01:00
source = lib.getExe pkgs.traceroute;
2020-01-17 21:25:34 +00:00
};
};
}