summaryrefslogtreecommitdiffstats
path: root/nixos/modules/config/users-groups.nix
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2018-07-22 23:52:54 +0000
committervolth <volth@volth.com>2018-07-23 00:12:23 +0000
commit92b3e8f147462e5716d67f24578c2d92ff1deee7 (patch)
treec06d634cc49c6e9aa8d99225d6c06f9bb8c73d88 /nixos/modules/config/users-groups.nix
parent18d0ed20e8a7a99fcbf05ce79439c00238ee1d44 (diff)
fix build with allowAliases=false
Diffstat (limited to 'nixos/modules/config/users-groups.nix')
-rw-r--r--nixos/modules/config/users-groups.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 0290eff22fbd..ddec21b5f6e5 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -120,8 +120,8 @@ let
shell = mkOption {
type = types.either types.shellPackage types.path;
- default = pkgs.nologin;
- defaultText = "pkgs.nologin";
+ default = pkgs.shadow;
+ defaultText = "pkgs.shadow";
example = literalExample "pkgs.bashInteractive";
description = ''
The path to the user's shell. Can use shell derivations,