diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:02:31 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-22 19:02:31 -0700 |
| commit | 2f6152042984b7578e86b15892b093f0a8301c97 (patch) | |
| tree | 3346b0de067cb52eb86f38ac60f02b07c68283a1 /hosts/copenhagen/configuration.nix | |
| parent | 23282f550e792ef22bda744147f83365377dd7ec (diff) | |
Use /secrets
Diffstat (limited to 'hosts/copenhagen/configuration.nix')
| -rw-r--r-- | hosts/copenhagen/configuration.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hosts/copenhagen/configuration.nix b/hosts/copenhagen/configuration.nix index a8728f3..9f3b721 100644 --- a/hosts/copenhagen/configuration.nix +++ b/hosts/copenhagen/configuration.nix @@ -38,10 +38,11 @@ time.timeZone = "America/Los_Angeles"; users.users = { - root.password = "password"; + root.hashedPasswordFile = "/secrets/passwords/root"; "c" = { isNormalUser = true; + hashedPasswordFile = "/secrets/passwords/c"; extraGroups = [ "wheel" "minecraft" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" ]; }; |