summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorParnell Springmeyer <parnell@digitalmentat.com>2017-01-29 01:22:47 -0600
committerParnell Springmeyer <parnell@digitalmentat.com>2017-01-29 01:22:47 -0600
commit8e159b9d1ed816abca9ca415aba0bc254c4e162c (patch)
tree33498c35eafc6e98f31be8d7e308bf2d5ccc513a /nixos/modules
parent70ec24093c45a07a5b4f4d230390dfa16e87e1dc (diff)
downloadnixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar.gz
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar.bz2
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar.lz
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar.xz
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.tar.zst
nixlib-8e159b9d1ed816abca9ca415aba0bc254c4e162c.zip
Qualify mkOption with lib
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/security/wrappers/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/security/wrappers/default.nix b/nixos/modules/security/wrappers/default.nix
index 3012439e13d4..fa3712837068 100644
--- a/nixos/modules/security/wrappers/default.nix
+++ b/nixos/modules/security/wrappers/default.nix
@@ -76,7 +76,7 @@ in
   ###### interface
 
   options = {
-    security.setuidPrograms = mkOption {
+    security.setuidPrograms = lib.mkOption {
       type = types.listOf types.str;
       default = [];
       example = ["passwd"];