This commit is contained in:
2026-01-18 15:55:59 +03:00
parent 03f98a11cd
commit 47333aa53a
2 changed files with 13 additions and 1 deletions
+8 -1
View File
@@ -13,7 +13,13 @@
]; ];
boot = { boot = {
initrd.availableKernelModules = [ initrd = {
supportedFilesystems = [
"nfs"
"nfsv4"
"overlay"
];
availableKernelModules = [
"nvme" "nvme"
"xhci_pci" "xhci_pci"
"thunderbolt" "thunderbolt"
@@ -22,6 +28,7 @@
"usbhid" "usbhid"
"sd_mod" "sd_mod"
]; ];
};
# kernelModules = [ # kernelModules = [
# ]; # ];
extraModulePackages = [ ]; extraModulePackages = [ ];
+5
View File
@@ -11,6 +11,11 @@
]; ];
boot = { boot = {
initrd = { initrd = {
supportedFilesystems = [
"nfs"
"nfsv4"
"overlay"
];
availableKernelModules = [ availableKernelModules = [
"ahci" "ahci"
"xhci_pci" "xhci_pci"