nixpkgs/nixos/modules/programs/mtr.nix

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

39 lines
678 B
Nix
Raw Permalink Normal View History

2017-02-17 20:14:59 +01:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.mtr;
2017-02-17 20:14:59 +01:00
in
{
options = {
programs.mtr = {
enable = lib.mkOption {
type = lib.types.bool;
2017-02-17 20:14:59 +01:00
default = false;
description = ''
Whether to add mtr to the global environment and configure a
setcap wrapper for it.
'';
};
package = lib.mkPackageOption pkgs "mtr" { };
2017-02-17 20:14:59 +01:00
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
security.wrappers.mtr-packet = {
owner = "root";
group = "root";
2017-02-17 20:14:59 +01:00
capabilities = "cap_net_raw+p";
source = "${cfg.package}/bin/mtr-packet";
2017-02-17 20:14:59 +01:00
};
};
}