Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add more kernel modules to runtime

+2 -2
+2 -2
hardware-configuration.nix
··· 11 11 12 12 boot.kernelPackages = pkgs.linuxPackages_latest; 13 13 boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; 14 - boot.initrd.kernelModules = [ "kvm-amd" "amdgpu" ]; 15 - boot.kernelModules = [ "kvm-amd" "amdgpu" ]; 14 + boot.initrd.kernelModules = [ "kvm-amd" "amdgpu" "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; 15 + boot.kernelModules = [ "kvm-amd" "amdgpu" "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ]; 16 16 virtualisation.libvirtd = { 17 17 enable = true; 18 18 qemu = {