14 lines
375 B
Nix
14 lines
375 B
Nix
{ 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
|
|
heroic
|
|
protonup-qt
|
|
protontricks
|
|
winetricks
|
|
];
|
|
}
|