Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

chore: nixos hardware tweaks

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+4 -6
+1 -1
fedac/nixos/flake.nix
··· 71 71 # enough room for the kernel, initrd, and GRUB assets. 72 72 bootSize = "2048M"; 73 73 diskSize = "auto"; 74 - additionalSpace = "256M"; 74 + additionalSpace = "1G"; 75 75 memSize = 4096; 76 76 }; 77 77
+3 -5
fedac/nixos/modules/hardware.nix
··· 18 18 security.rtkit.enable = true; 19 19 services.pipewire.enable = false; 20 20 21 - # Slim initrd — only modules needed for Intel laptops + USB boot. 22 - # Default NixOS initrd is 1.4GB (every driver); this cuts to ~50-80MB. 23 - boot.initrd.includeDefaultModules = false; 21 + # Kernel modules for common hardware 24 22 boot.initrd.availableKernelModules = [ 25 - # Storage (USB boot + internal NVMe) 23 + # Storage 26 24 "ahci" "nvme" "sd_mod" "usb_storage" "uas" 27 25 "xhci_pci" "ehci_pci" "ohci_pci" 28 26 # Input ··· 30 28 # GPU (loaded early for KMS) 31 29 "i915" "amdgpu" "nouveau" 32 30 # Filesystems 33 - "ext4" "vfat" "nls_cp437" "nls_iso8859_1" 31 + "vfat" "nls_cp437" "nls_iso8859_1" 34 32 ]; 35 33 36 34 boot.kernelModules = [