me like nix
0

Configure Feed

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

try fix mira

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit dc909e87 parent 54a17ad7 change-id pqypwwxq
+10 -3
+6
hosts/mira/configuration.nix
··· 12 12 ]; 13 13 14 14 networking.hostName = "mira"; # Define your hostname. 15 + 16 + # ZRAM swap to prevent OOM freezes 17 + zramSwap = { 18 + enable = true; 19 + memoryPercent = 50; 20 + }; 15 21 # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. 16 22 17 23 # Configure network proxy if necessary
+4 -3
hosts/mira/hardware-configuration.nix
··· 24 24 boot.initrd.kernelModules = [ ]; 25 25 boot.kernelModules = [ "kvm-intel" ]; 26 26 boot.extraModulePackages = [ ]; 27 - # Prevent xe driver from loading alongside i915 (causes DRM page flip EBUSY errors) 28 - boot.blacklistedKernelModules = [ "xe" ]; 29 27 # Enable GuC submission + HuC for proper Alder Lake GPU scheduling 30 - boot.kernelParams = [ "i915.enable_guc=3" ]; 28 + boot.kernelParams = [ 29 + "i915.enable_guc=3" 30 + "i915.enable_psr=0" # Disable Panel Self Refresh (causes freezes on Alder Lake) 31 + ]; 31 32 32 33 fileSystems."/" = { 33 34 device = "/dev/disk/by-uuid/e51cb271-90b6-49ae-89aa-491b17e59d97";