too lazy to write a proper message but this fixes the greeter
This commit is contained in:
alsaiduq-lab 2025-12-31 17:52:47 -07:00
parent 4459f75c75
commit ec3d8e3a52
11 changed files with 148 additions and 76 deletions

View file

@ -1,16 +1,43 @@
{pkgs, ...}: {
programs.steam = {
enable = true;
# apparently enabling this makes big picture boot up, does not work on nvidia however
# gamescopeSession.enable = true;
extraCompatPackages = [
pkgs.proton-ge-bin
pkgs.proton-cachyos
];
# for hosting
# dedicatedServer.openFirewall = true;
# remotePlay.openFirewall = true;
extest.enable = true;
protontricks.enable = true;
};
programs.wine = {
enable = true;
package = pkgs.wine-cachyos;
ntsync = true;
};
programs.gamescope = {
enable = true;
capSysNice = true;
};
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
general = {
renice = 10;
softrealtime = "auto";
inhibit_screensaver = 1;
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode on'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode off'";
};
};
};
hardware.graphics = {
enable = true;
@ -20,9 +47,9 @@
lutris
wine-cachyos
winetricks
protontricks
gamemode
mangohud
libstrangle
gamescope-wsi
ipc-bridge
];
}