nixfiles/hosts/hetzner-arm/hetzner-arm.nix
2023-09-19 22:30:02 +01:00

20 lines
325 B
Nix

{
tree,
lib,
...
}: let
inherit (lib.lists) forEach;
in {
imports = with tree; [
presets.nixos.serverBase
presets.nixos.serverHetzner
./hardware.nix
./secrets.nix
];
networking.hostName = "hetzner-arm";
home-manager.users.root.home.stateVersion = "23.05";
system.stateVersion = "23.05";
}