From c9be63b83e6b669181adb34c5527e7fe9a393149 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 14 Jun 2012 21:33:59 +0000 Subject: [PATCH] =?UTF-8?q?*=20Use=20=E2=80=98nologin=E2=80=99=20as=20the?= =?UTF-8?q?=20default=20shell=20for=20user=20accounts=20that=20are=20not?= =?UTF-8?q?=20=20=20allowed=20to=20log=20in.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svn path=/nixos/trunk/; revision=34514 --- modules/config/users-groups.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/users-groups.nix b/modules/config/users-groups.nix index deaa346acff..beb21734652 100644 --- a/modules/config/users-groups.nix +++ b/modules/config/users-groups.nix @@ -48,7 +48,7 @@ let shell = mkOption { type = with types; uniq string; - default = "/noshell"; + default = "/var/run/current-system/sw/sbin/nologin"; description = "The path to the user's shell."; };