nixpkgs/nixos/modules/programs/mtr.nix

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

35 lines
676 B
Nix
Raw Normal View History

2017-02-17 19:14:59 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.mtr;
2017-02-17 19:14:59 +00:00
in {
options = {
programs.mtr = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
2017-02-17 19:14:59 +00:00
Whether to add mtr to the global environment and configure a
setcap wrapper for it.
'';
};
package = mkPackageOption pkgs "mtr" { };
2017-02-17 19:14:59 +00:00
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ 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
};
};
}