nixos/modules/gaming.nix
Julian Sutter 954278cee9 parsec
2023-08-11 09:17:26 -07:00

17 lines
352 B
Nix
Executable file

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
parsec-bin
bottles
];
# Steam
programs.steam = with pkgs; {
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
};
}