1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ config, pkgs, ... }: { # https://wiki.gentoo.org/wiki/Intel#Feature_support services.xserver = { useGlamor = true; deviceSection = '' Option "DRI" "3" ''; videoDrivers = [ "intel" ]; }; boot.kernelParams = [ "i915.enable_guc=2" "i915.fastboot=1" ]; }