forked from extern/nixos-wiki-infra
inherit ssh keys from terraform
This commit is contained in:
parent
8ea980e9b3
commit
36e05c009a
@ -1,6 +1,9 @@
|
|||||||
{ self, ... }: {
|
{ self, ... }: let
|
||||||
|
nixosVars = builtins.fromJSON (builtins.readFile ./nixos-vars.json);
|
||||||
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.nixos-wiki
|
self.nixosModules.nixos-wiki
|
||||||
self.nixosModules.hcloud
|
self.nixosModules.hcloud
|
||||||
];
|
];
|
||||||
|
config.users.users.root.openssh.authorizedKeys.keys = nixosVars.ssh_keys;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
{ self, ... }: {
|
{ self, ... }: let
|
||||||
|
nixosVars = builtins.fromJSON (builtins.readFile ./nixos-vars.json);
|
||||||
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.nixos-wiki
|
self.nixosModules.nixos-wiki
|
||||||
self.nixosModules.hcloud
|
self.nixosModules.hcloud
|
||||||
];
|
];
|
||||||
|
config.users.users.root.openssh.authorizedKeys.keys = nixosVars.ssh_keys;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user