From cd39a136f96f29d2c7bbf4cd5c86986de053f3f5 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Wed, 10 Apr 2024 22:56:48 -0400 Subject: [PATCH] system: Blacklist floppy kernel module Fixes an issue where the QEMU VM attempted to load a floppy at /dev/fd0. --- modules/system.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/system.nix b/modules/system.nix index 3805017d..bab93d47 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -78,6 +78,10 @@ in timeout = 0; efi.canTouchEfiVariables = true; }; + + blacklistedKernelModules = [ + "floppy" + ]; }; systemd = {