hosts/hosts/x270.nix

38 lines
898 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib, pkgs, ... }:
{
hardware.trackpoint = {
enable = true;
sensitivity = 230;
speed = 170;
};
services.xserver.videoDrivers = [ "modesetting" ];
boot.initrd.kernelModules = [ "i915" ];
hardware.opengl = {
enable = true;
# driSupport = true;
# driSupport32Bit = true;
};
environment.variables = {
VDPAU_DRIVER = "va_gl";
};
hardware.opengl.extraPackages = with pkgs; [
(if (lib.versionOlder (lib.versions.majorMinor lib.version) "23.11") then vaapiIntel else intel-vaapi-driver)
libvdpau-va-gl
intel-media-driver
];
console = {
font = "Lat2-Terminus16";
keyMap = "de";
};
boot.kernelParams = [
# Disable Panel Self Refresh. Fixes random freezes.
"i915.enable_psr=0"
];
hardware.cpu.intel.updateMicrocode = true;
}