1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-14 14:27:52 +02:00
nixos-hardware/common/gpu/intel/disable.nix

7 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" ];
}