introduce vsync for intel graphic cards

This commit is contained in:
Ingolf Wagner 2025-02-14 18:53:50 +13:00
parent 1e9d3c08cf
commit 7a3a6f3498
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -23,6 +23,15 @@ with lib;
autoLogin.user = config.users.users.mainUser.name;
};
# vsync for intel graphic cards
# https://wiki.archlinux.org/title/Intel_graphics
services.xserver.config = ''
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
EndSection
'';
services.xserver = {
enable = true;