From 822380695eff3b0b6db8546f6abf108d0a0ef8fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sun, 8 Mar 2026 14:31:09 +0100 Subject: [PATCH] nrec-nixos01: import qemu-guest profile for virtio modules The initrd was missing virtio drivers, preventing the root filesystem from being detected during boot. Co-Authored-By: Claude Opus 4.6 --- hosts/nrec-nixos01/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/nrec-nixos01/default.nix b/hosts/nrec-nixos01/default.nix index 0047439..5e8f064 100644 --- a/hosts/nrec-nixos01/default.nix +++ b/hosts/nrec-nixos01/default.nix @@ -1,7 +1,8 @@ -{ ... }: +{ modulesPath, ... }: { imports = [ ./configuration.nix ../../system/packages.nix + (modulesPath + "/profiles/qemu-guest.nix") ]; }