extract hetzner vm module, add device hyperforge

This commit is contained in:
müde 2026-05-27 17:44:03 +02:00
parent 340d51b45a
commit bda4fbe2c0
8 changed files with 129 additions and 105 deletions

View file

@ -0,0 +1,14 @@
{ modulesPath, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
config = {
my.hetznerVm = {
enable = true;
rootUuid = "73dfcfd2-3a61-4b05-8440-d57072b89eda";
bootUuid = "E9C2-D85B";
swapUuid = "737140f2-c2fd-4af9-9974-f05642f8d90e";
ipv6Address = "2a01:4f8:c013:cbdd::1/64";
};
};
}