flake/nixos/gaming.nix

57 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs.steam = {
enable = true;
protontricks.enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
2024-12-23 12:30:01 -05:00
programs.gamescope = {
enable = true;
capSysNice = true;
args = [
"--mangoapp"
"-w 1080"
"-h 1920"
];
};
programs.gamemode = {
enable = true;
enableRenice = true;
settings = {
general = {
renice = 10;
inhibit_screensaver = 1;
};
filter = {
# whitelist = ''
# RiseOfTheTombRaider
# '';
# blacklist = ''
# HalfLife3
# glxgears
# '';
};
custom = {
start = "${pkgs.libnotify}/bin/notify-send 'GameMode started'";
end = "${pkgs.libnotify}/bin/notify-send 'GameMode ended'";
};
};
};
environment.systemPackages = with pkgs; [
(prismlauncher.override {
jdks = with pkgs; [
jdk8
jdk17
jdk21
];
})
2024-12-12 13:52:37 -05:00
lunar-client
2024-11-17 15:19:07 -05:00
heroic
protonup-qt
winetricks
2024-12-08 19:33:37 -05:00
celeste64
];
}