mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
18 lines
222 B
Nix
18 lines
222 B
Nix
|
|
{
|
||
|
|
hardware = {
|
||
|
|
graphics = {
|
||
|
|
enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
services.xserver = {
|
||
|
|
videoDrivers = [
|
||
|
|
"intel"
|
||
|
|
"modesetting"
|
||
|
|
];
|
||
|
|
deviceSection = ''
|
||
|
|
Option "TearFree" "true"
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|