nixos/desktop/gaming.nix
2024-12-11 10:54:36 -08:00

17 lines
353 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
};
}