mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fixed low refresh rate
This commit is contained in:
parent
30fd0d4132
commit
35e7a391b7
4 changed files with 19 additions and 5 deletions
|
|
@ -10,11 +10,6 @@
|
||||||
"xsetroot -cursor_name left_ptr"
|
"xsetroot -cursor_name left_ptr"
|
||||||
"xsetroot -solid \"#000000\""
|
"xsetroot -solid \"#000000\""
|
||||||
"flashfocus"
|
"flashfocus"
|
||||||
"bspc monitor -a I"
|
|
||||||
"bspc monitor -a II"
|
|
||||||
"bspc monitor -a III"
|
|
||||||
"bspc monitor -a IV"
|
|
||||||
"bspc monitor -a X"
|
|
||||||
];
|
];
|
||||||
settings = {
|
settings = {
|
||||||
border_width = 0;
|
border_width = 0;
|
||||||
|
|
@ -27,5 +22,9 @@
|
||||||
borderless_monocle = true;
|
borderless_monocle = true;
|
||||||
gapless_monocle = true;
|
gapless_monocle = true;
|
||||||
};
|
};
|
||||||
|
monitors = {
|
||||||
|
HDMI-0 = [ "I" "II" "III" "IV" "V" ];
|
||||||
|
# eDP-1 = [ "VI" "VII" "VIII" "IX" "X" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,7 @@ environment.systemPackages = with pkgs; [
|
||||||
networkmanagerapplet
|
networkmanagerapplet
|
||||||
dmenu
|
dmenu
|
||||||
qsudo
|
qsudo
|
||||||
|
mate.mate-polkit
|
||||||
flashfocus
|
flashfocus
|
||||||
pavucontrol
|
pavucontrol
|
||||||
gpick
|
gpick
|
||||||
|
|
|
||||||
13
modules/refreshrate.nix
Normal file
13
modules/refreshrate.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
services.xserver = {
|
||||||
|
xrandrHeads = [
|
||||||
|
{
|
||||||
|
output = "HDMI-0";
|
||||||
|
primary = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
screenSection = ''
|
||||||
|
Option "metamodes" "1920x1080_144 +0+0"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
../modules/scripts.nix
|
../modules/scripts.nix
|
||||||
../modules/misc.nix
|
../modules/misc.nix
|
||||||
../modules/vfio.nix
|
../modules/vfio.nix
|
||||||
|
../modules/refreshrate.nix
|
||||||
../modules/xserver.nix
|
../modules/xserver.nix
|
||||||
];
|
];
|
||||||
networking.hostName = "gerg-desktop";
|
networking.hostName = "gerg-desktop";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue