From 96f54930eebe1fe5d766b6e6eca31c246e219e33 Mon Sep 17 00:00:00 2001 From: William P Date: Thu, 24 Jul 2025 15:54:34 -0400 Subject: [PATCH] fix boot issues on hyper-v --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index bae79e2..a6456f9 100644 --- a/flake.nix +++ b/flake.nix @@ -42,6 +42,8 @@ system.stateVersion = "25.05"; + boot.initrd.kernelModules = ["hv_vmbus" "hv_storvsc"]; # Hyper-V Support + # Disable unneeded features ##boot.loader.grub.enable = true; # Not needed as iso-image.nix in modulesPath defines these and cause conflict ##boot.loader.grub.device = "nodev";