From 4f72ba0288efb9bbf6a5c9ab533099bb9cf0638b Mon Sep 17 00:00:00 2001 From: ska Date: Sat, 20 Dec 2025 09:14:46 +0000 Subject: [PATCH] Update configuration.nix --- configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 4b1bb67..160b482 100644 --- a/configuration.nix +++ b/configuration.nix @@ -133,7 +133,12 @@ in # Fixed: added USB and storage modules for reliable boot from USB stick boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "usb_storage" "sd_mod" "sr_mod" ]; - + boot.initrd.supportedFilesystems = [ "vfat" "ntfs" "ext4" "btrfs" "xfs" "f2fs" ]; + boot.kernelModules = [ + "i915" "amdgpu" "nouveau" # Common GPU drivers + "rtl8192cu" "ath9k" "iwlwifi" # Common WiFi chipsets + ]; + # Fixed: added ZRAM to avoid crashes due to low RAM on portable systems zramSwap.enable = true;