deploy: test new keys
This commit is contained in:
parent
3527e5d3ed
commit
8b992b53d8
2 changed files with 4 additions and 3 deletions
|
|
@ -15,6 +15,7 @@ in
|
|||
"${modulesPath}/virtualisation/lxc-container.nix"
|
||||
];
|
||||
deploy = {
|
||||
enable = false;
|
||||
address = "unknown.local";
|
||||
};
|
||||
networking = {
|
||||
|
|
|
|||
|
|
@ -31,9 +31,9 @@ in
|
|||
{
|
||||
users.users = {
|
||||
|
||||
root.openssh.authorizedKeys.keys = lib.flatten (
|
||||
lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u
|
||||
);
|
||||
root.openssh.authorizedKeys.keys =
|
||||
lib.flatten (lib.mapAttrsToList (_: v: v.openssh.authorizedKeys.keys) u)
|
||||
++ [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINwJF0BNEY0CgA5kkZrzpv+sahs40anFO+JKTfFJIgqU" ];
|
||||
|
||||
} // u;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue