diff options
| -rw-r--r-- | hosts/fina/default.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/fina/default.nix b/hosts/fina/default.nix index 28a8705..cffaed2 100644 --- a/hosts/fina/default.nix +++ b/hosts/fina/default.nix @@ -1,5 +1,6 @@ { pkgs, + secrets, ... }: { @@ -48,9 +49,14 @@ }; }; - users.users.ebisu = { - isNormalUser = true; - extraGroups = [ "wheel" ]; + users.users = { + root.initialHashedPassword = secrets.initial_hashed_password; + + ebisu = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + initialHashedPassword = secrets.initial_hashed_password; + }; }; environment.systemPackages = with pkgs; [ |