summary refs log tree commit diff
path: root/nixos/modules
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
parente67416f7e2685ab6136863f96545a1c22f8a23cd (diff)
downloadnixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar.gz
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar.bz2
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar.lz
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar.xz
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.tar.zst
nixlib-bd0d8ed807d29faa3deee96bafcbbd76c8fa4060.zip
programs.mtr: init setcap-wrapper
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/module-list.nix1
-rw-r--r--nixos/modules/programs/mtr.nix27
2 files changed, 28 insertions, 0 deletions
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index 81597d91d89a..2195a828a1ee 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -80,6 +80,7 @@
   ./programs/light.nix
   ./programs/man.nix
   ./programs/mosh.nix
+  ./programs/mtr.nix
   ./programs/nano.nix
   ./programs/oblogout.nix
   ./programs/screen.nix
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";
+    };
+  };
+}