flake/nixos/gaming.nix

48 lines
1 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
};
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
];
}