flake/nixos/gaming.nix

15 lines
375 B
Nix
Raw Permalink 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; [
prismlauncher
2024-11-17 15:19:07 -05:00
heroic
protonup-qt
protontricks
winetricks
];
}