nixpkgs/nixos/modules/programs/traceroute.nix

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

27 lines
543 B
Nix
Raw Normal View History

2020-01-17 21:25:34 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.traceroute;
in {
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";
source = "${pkgs.traceroute}/bin/traceroute";
2020-01-17 21:25:34 +00:00
};
};
}