clan-infra/targets/web01/configuration.nix

11 lines
280 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 = [
self.nixosModules.nixos-wiki
self.nixosModules.hcloud
];
users.users.root.openssh.authorizedKeys.keys = nixosVars.ssh_keys;
system.stateVersion = "23.05";
}