mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-09 16:33:57 -05:00
gerg-desktop: fix mouse acceleration and screen blanking
This commit is contained in:
parent
d54be846e5
commit
5f3f4e9fd0
2 changed files with 9 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ in
|
|||
|
||||
services.xserver = {
|
||||
|
||||
videoDrivers = ["amdgpu"];
|
||||
videoDrivers = [ "amdgpu" ];
|
||||
|
||||
displayManager.setupCommands = lib.mkBefore ''
|
||||
if ! [ -e "/etc/Xorg/ONE_MONITOR" ] ; then
|
||||
|
|
|
|||
|
|
@ -89,8 +89,16 @@
|
|||
--mode 1920x1080 \
|
||||
--rate 120
|
||||
'';
|
||||
serverFlagsSection = ''
|
||||
Option "StandbyTime" "0"
|
||||
Option "SuspendTime" "0"
|
||||
Option "OffTime" "0"
|
||||
Option "BlankTime" "0"
|
||||
'';
|
||||
};
|
||||
|
||||
services.libinput.mouse.accelProfile = "flat";
|
||||
|
||||
programs = {
|
||||
steam.enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue