me like nix
0

Configure Feed

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

maybe fix freeze on mira

author
Sean Aye
date (Mar 22, 2026, 8:03 PM -0400) commit 69d73055 parent 7fca59de change-id wryrpkul
+4
+4
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 + # Enable GuC submission + HuC for proper Alder Lake GPU scheduling 30 + boot.kernelParams = [ "i915.enable_guc=3" ]; 27 31 28 32 fileSystems."/" = { 29 33 device = "/dev/disk/by-uuid/e51cb271-90b6-49ae-89aa-491b17e59d97";