1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Use ‘nologin’ as the default shell for user accounts that are not

allowed to log in.

svn path=/nixos/trunk/; revision=34514
This commit is contained in:
Eelco Dolstra 2012-06-14 21:33:59 +00:00
parent fd9604b319
commit c9be63b83e

View file

@ -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.";
};