diff options
| author | Fuwn <[email protected]> | 2024-08-31 14:50:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-31 14:50:10 -0700 |
| commit | 251874fddbb499ee12657a82e7d5ec2034f48547 (patch) | |
| tree | dd737fae6963dae327062d8bff10dc9e8c156198 /modules/users.nix | |
| parent | t (diff) | |
| download | nixos-config-251874fddbb499ee12657a82e7d5ec2034f48547.tar.xz nixos-config-251874fddbb499ee12657a82e7d5ec2034f48547.zip | |
f
Diffstat (limited to 'modules/users.nix')
| -rw-r--r-- | modules/users.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/users.nix b/modules/users.nix index ca1ee02..a5f975a 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -5,13 +5,15 @@ in { users.users = { root = { - initialPassword = initialPassword; + inherit initialPassword; + shell = pkgs.bash; }; ebisu = { + inherit initialPassword; + isNormalUser = true; - initialPassword = initialPassword; shell = pkgs.fish; extraGroups = [ |