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