diff options
Diffstat (limited to 'modules/users.nix')
| -rw-r--r-- | modules/users.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/users.nix b/modules/users.nix index 84a2ea3..ca1ee02 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -4,7 +4,10 @@ let in { users.users = { - root.initialPassword = initialPassword; + root = { + initialPassword = initialPassword; + shell = pkgs.bash; + }; ebisu = { isNormalUser = true; |