nixos/modules/refreshrate.nix
2022-08-16 00:14:37 -04:00

16 lines
281 B
Nix

{
services.xserver = {
xrandrHeads = [
{
output = "HDMI-0";
primary = true;
monitorConfig = ''
Option "DPMS" "false"
'';
}
];
screenSection = ''
Option "metamodes" "1920x1080_144 +0+0"
'';
};
}