lifetracker/hosts/orion/ga403/common/gpu/intel/disable.nix
2025-01-25 13:05:37 -08:00

8 lines
194 B
Nix

{ lib, ... }:
{
boot.blacklistedKernelModules = lib.mkDefault [ "i915" ];
# KMS will load the module, regardless of blacklisting
boot.kernelParams = lib.mkDefault [ "i915.modeset=0" ];
}