From 4d8e4bbceef473dec80c783a340222cf4bd8d8bc Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Wed, 6 Aug 2025 15:37:57 -0400 Subject: [PATCH] ad virtio modules to michishirube --- hosts/nixos/Michishirube/hardware-configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hosts/nixos/Michishirube/hardware-configuration.nix diff --git a/hosts/nixos/Michishirube/hardware-configuration.nix b/hosts/nixos/Michishirube/hardware-configuration.nix new file mode 100644 index 0000000..98cf605 --- /dev/null +++ b/hosts/nixos/Michishirube/hardware-configuration.nix @@ -0,0 +1,13 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{modulesPath, ...}: { + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "usb_storage" "sd_mod" "virtio_pci" "virtio_scsi"]; + boot.initrd.kernelModules = []; + boot.kernelModules = []; + boot.extraModulePackages = []; +}