diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-05-15 08:27:10 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-05-15 08:27:10 -0700 |
| commit | 1ad7b1e951b2d70679dbdb79abc68d6b20757fc4 (patch) | |
| tree | 7dd09129b6baf9855c4dbba0054a95dce032da1b /configuration.nix | |
| parent | a71f274a1314a7301edb5a31ce547bfdae74c4be (diff) | |
Move password hash files
Diffstat (limited to 'configuration.nix')
| -rw-r--r-- | configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configuration.nix b/configuration.nix index 213a0e1..873f169 100644 --- a/configuration.nix +++ b/configuration.nix @@ -55,11 +55,11 @@ time.timeZone = "America/Los_Angeles"; users.users = { - root.hashedPasswordFile = "/persist/passwords/root"; + root.hashedPasswordFile = "/persist/secrets/passwords/root"; "c" = { isNormalUser = true; - hashedPasswordFile = "/persist/passwords/c"; + hashedPasswordFile = "/persist/secrets/passwords/c"; extraGroups = [ "wheel" ]; }; }; |