users: change default shell to /usr/bin/false to match macOS

This commit is contained in:
Michael Hoang 2024-10-26 11:35:34 +11:00
parent bd161d61d6
commit 3712ff78cc
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@
shell = mkOption {
type = types.either types.shellPackage types.path;
default = "/sbin/nologin";
default = "/usr/bin/false";
example = literalExpression "pkgs.bashInteractive";
description = "The user's shell.";
};