profiles/onyx/hyper-v.nix (view raw)
1{ ... }: { 2 boot.initrd.availableKernelModules = [ "hv_vmbus" "hv_storvsc" ]; 3 4 systemd.services.tailscaled.environment = { 5 TS_ENCRYPT_STATE = "false"; 6 }; 7 8 virtualisation.hypervGuest.enable = true; 9}