nixos/desktop/gaming.nix
Julian Sutter 62cc027e98 updates
2024-12-29 21:12:40 -08:00

17 lines
354 B
Nix

{ 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
};
}