nixos-configs/nixosConfigurations/forgejo-runner-1/hardware.nix

15 lines
346 B
Nix
Raw Normal View History

2025-03-17 19:06:47 +01:00
{ modulesPath, ... }:
2025-01-26 16:23:22 +01:00
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
config = {
my.hetznerVm = {
2025-01-26 17:23:36 +01:00
enable = true;
rootUuid = "47bc77ff-12e1-4d39-bb5c-fb100ccd3aab";
bootUuid = "05F2-8F9A";
swapUuid = "bbd18a70-b0bb-4e1a-b45b-3c1f8ecc0c10";
ipv6Address = "2a01:4f8:c013:a524::1/64";
2025-01-26 17:23:36 +01:00
};
2025-01-26 16:23:22 +01:00
};
}