deploy: test new keys
Some checks failed
/ check (push) Successful in 42s
/ deploy (push) Failing after 3s

This commit is contained in:
Jermeiah S 2025-06-20 14:17:12 -04:00
parent 3527e5d3ed
commit 8b992b53d8
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View file

@ -15,6 +15,7 @@ in
"${modulesPath}/virtualisation/lxc-container.nix" "${modulesPath}/virtualisation/lxc-container.nix"
]; ];
deploy = { deploy = {
enable = false;
address = "unknown.local"; address = "unknown.local";
}; };
networking = { networking = {

View file

@ -31,9 +31,9 @@ in
{ {
users.users = { users.users = {
root.openssh.authorizedKeys.keys = lib.flatten ( root.openssh.authorizedKeys.keys =
lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u lib.flatten (lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u)
); ++ [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwJF0BNEY0CgA5kkZrzpv+sahs40anFO+JKTfFJIgqU" ];
} // u; } // u;
} }