nixpkgs/nixos/modules/programs/mtr.nix

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

33 lines
670 B
Nix
Raw Normal View History

2017-02-17 19:14:59 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.mtr;
2017-02-17 19:14:59 +00:00
in {
options = {
programs.mtr = {
enable = lib.mkOption {
type = lib.types.bool;
2017-02-17 19:14:59 +00: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 19:14:59 +00:00
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
security.wrappers.mtr-packet = {
owner = "root";
group = "root";
2017-02-17 19:14:59 +00:00
capabilities = "cap_net_raw+p";
source = "${cfg.package}/bin/mtr-packet";
2017-02-17 19:14:59 +00:00
};
};
}