flake/nixos/gaming.nix

25 lines
514 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
programs.steam = {
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
};
environment.systemPackages = with pkgs; [
2024-12-23 02:07:48 -05:00
gamemode
(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
protontricks
winetricks
2024-12-08 19:33:37 -05:00
celeste64
];
}