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/c-pc/configuration.nix | |
| parent | 23282f550e792ef22bda744147f83365377dd7ec (diff) | |
Use /secrets
Diffstat (limited to 'hosts/c-pc/configuration.nix')
| -rw-r--r-- | hosts/c-pc/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix index 9d11121..367349c 100644 --- a/hosts/c-pc/configuration.nix +++ b/hosts/c-pc/configuration.nix @@ -36,11 +36,11 @@ time.timeZone = "America/Los_Angeles"; users.users = { - root.hashedPasswordFile = "/persist/secrets/passwords/root"; + root.hashedPasswordFile = "/secrets/passwords/root"; "c" = { isNormalUser = true; - hashedPasswordFile = "/persist/secrets/passwords/c"; + hashedPasswordFile = "/secrets/passwords/c"; extraGroups = [ "wheel" ]; }; }; |