summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/software/users.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/software/users.nix b/modules/software/users.nix
index be33ac8..ab3fe03 100644
--- a/modules/software/users.nix
+++ b/modules/software/users.nix
@@ -1,6 +1,6 @@
-{ pkgs, ... }:
+{ pkgs, secrets, ... }:
let
- initialPassword = "123456";
+ initialHashedPassword = secrets.initial_hashed_password;
in
{
users = {
@@ -8,13 +8,13 @@ in
users = {
root = {
- inherit initialPassword;
+ inherit initialHashedPassword;
shell = pkgs.bash;
};
ebisu = {
- inherit initialPassword;
+ inherit initialHashedPassword;
isNormalUser = true;
shell = pkgs.fish;