summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/mtr.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-02-17 20:14:59 +0100
committerRobin Gloster <mail@glob.in>2017-02-17 20:18:19 +0100
commitbd0d8ed807d29faa3deee96bafcbbd76c8fa4060 (patch)
tree58a5b0b357cadf7e383b31c16a5bb8497fb699e6 /nixos/modules/programs/mtr.nix
parente67416f7e2685ab6136863f96545a1c22f8a23cd (diff)
programs.mtr: init setcap-wrapper
Diffstat (limited to 'nixos/modules/programs/mtr.nix')
-rw-r--r--nixos/modules/programs/mtr.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixos/modules/programs/mtr.nix b/nixos/modules/programs/mtr.nix
new file mode 100644
index 000000000000..927fe68be875
--- /dev/null
+++ b/nixos/modules/programs/mtr.nix
@@ -0,0 +1,27 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.programs.mtr;
+in {
+ options = {
+ programs.mtr = {
+ enable = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to add mtr to the global environment and configure a
+ setcap wrapper for it.
+ '';
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ security.wrappers.mtr = {
+ source = "${pkgs.mtr}/bin/mtr";
+ capabilities = "cap_net_raw+p";
+ };
+ };
+}