From 47333aa53ac6c957eecc2fa40dda9c910d768bda Mon Sep 17 00:00:00 2001 From: oqyude Date: Sun, 18 Jan 2026 15:55:59 +0300 Subject: [PATCH] 123 --- configurations/hardware/mini-laptop.nix | 9 ++++++++- configurations/hardware/server.nix | 5 +++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/configurations/hardware/mini-laptop.nix b/configurations/hardware/mini-laptop.nix index d60e7a2..5894e07 100644 --- a/configurations/hardware/mini-laptop.nix +++ b/configurations/hardware/mini-laptop.nix @@ -13,7 +13,13 @@ ]; boot = { - initrd.availableKernelModules = [ + initrd = { + supportedFilesystems = [ + "nfs" + "nfsv4" + "overlay" + ]; + availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" @@ -22,6 +28,7 @@ "usbhid" "sd_mod" ]; + }; # kernelModules = [ # ]; extraModulePackages = [ ]; diff --git a/configurations/hardware/server.nix b/configurations/hardware/server.nix index 1d1c13c..d20c5ec 100644 --- a/configurations/hardware/server.nix +++ b/configurations/hardware/server.nix @@ -11,6 +11,11 @@ ]; boot = { initrd = { + supportedFilesystems = [ + "nfs" + "nfsv4" + "overlay" + ]; availableKernelModules = [ "ahci" "xhci_pci"