summary refs log tree commit diff
path: root/nixos/modules/config/users-groups.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-01 13:57:06 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-01 13:57:36 -0700
commitff2117192105c4c356a6ce31514ca93da2e837ff (patch)
tree972238049fdef743283dacdab82f6600b8ac3e73 /nixos/modules/config/users-groups.nix
parenta9f2e107d00c9955ef244455ee2aac857276192b (diff)
downloadnixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar.gz
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar.bz2
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar.lz
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar.xz
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.tar.zst
nixlib-ff2117192105c4c356a6ce31514ca93da2e837ff.zip
Fix references to current-system/sw/sbin
Diffstat (limited to 'nixos/modules/config/users-groups.nix')
-rw-r--r--nixos/modules/config/users-groups.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index db87f9fd0b1a..9d48edf2f26c 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -110,7 +110,7 @@ let
 
       shell = mkOption {
         type = types.str;
-        default = "/run/current-system/sw/sbin/nologin";
+        default = "/run/current-system/sw/bin/nologin";
         description = "The path to the user's shell.";
       };