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"
|
"${modulesPath}/virtualisation/lxc-container.nix"
|
||||||
];
|
];
|
||||||
deploy = {
|
deploy = {
|
||||||
|
enable = false;
|
||||||
address = "unknown.local";
|
address = "unknown.local";
|
||||||
};
|
};
|
||||||
networking = {
|
networking = {
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue