diff options
| author | Fuwn <[email protected]> | 2024-08-30 17:18:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-30 17:18:42 -0700 |
| commit | f011065b76e37a76222919c333005559eda8dbde (patch) | |
| tree | d56b550369591048c9062344e49ca3e79a291b14 /modules/users.nix | |
| parent | update (diff) | |
| download | nixos-config-f011065b76e37a76222919c333005559eda8dbde.tar.xz nixos-config-f011065b76e37a76222919c333005559eda8dbde.zip | |
swag
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; |