nixos-configs/nixosConfigurations/hetzner-vpn2/hardware.nix

15 lines
346 B
Nix
Raw Permalink Normal View History

2025-03-17 19:06:47 +01:00
{ modulesPath, ... }:
2024-12-01 12:06:11 +01:00
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
config = {
my.hetznerVm = {
2024-12-01 16:39:35 +01:00
enable = true;
rootUuid = "3263489d-9819-433c-b198-9d2e732a94e4";
bootUuid = "6C25-6BDC";
swapUuid = "e147721d-86b5-40d7-a231-c6ea391c563d";
ipv6Address = "2a01:4f8:c013:65dd::1/64";
2024-12-01 12:06:11 +01:00
};
};
}