fixed low refresh rate

This commit is contained in:
gerg 2022-07-14 21:30:45 -04:00 committed by ISnortPennies
parent 30fd0d4132
commit 35e7a391b7
4 changed files with 19 additions and 5 deletions

View file

@ -43,6 +43,7 @@ environment.systemPackages = with pkgs; [
networkmanagerapplet
dmenu
qsudo
mate.mate-polkit
flashfocus
pavucontrol
gpick

13
modules/refreshrate.nix Normal file
View file

@ -0,0 +1,13 @@
{
services.xserver = {
xrandrHeads = [
{
output = "HDMI-0";
primary = true;
}
];
screenSection = ''
Option "metamodes" "1920x1080_144 +0+0"
'';
};
}