fix: move gortium passwordFile to shared user module (applies to all hosts)

This commit is contained in:
2026-06-14 21:55:48 -04:00
parent 8651295b0a
commit 6399196a2c
2 changed files with 1 additions and 1 deletions

View File

@@ -35,7 +35,6 @@
}; };
# Password file for gortium (merges with users/gortium/default.nix) # Password file for gortium (merges with users/gortium/default.nix)
users.users.gortium.passwordFile = config.age.secrets.gortium_password.path;
# WiFi via NetworkManager + secret agenix # WiFi via NetworkManager + secret agenix
networking.networkmanager.enable = true; networking.networkmanager.enable = true;

View File

@@ -11,6 +11,7 @@
]; ];
shell = pkgs.zsh; shell = pkgs.zsh;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
passwordFile = config.age.secrets.gortium_password.path;
keys.users.gortium.main keys.users.gortium.main
]; ];
}; };