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 = []; +}