clan-infra/targets/web01/configuration.nix

11 lines
275 B
Nix
Raw Normal View History

2023-07-04 14:43:31 +00:00
{ self, ... }: let
nixosVars = builtins.fromJSON (builtins.readFile ./nixos-vars.json);
in {
imports = [
2023-07-04 15:23:29 +00:00
self.nixosModules.web01
2023-07-04 14:43:31 +00:00
self.nixosModules.hcloud
];
users.users.root.openssh.authorizedKeys.keys = nixosVars.ssh_keys;
system.stateVersion = "23.05";
}