9 lines
273 B
Nix
9 lines
273 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
##### games ####
|
|
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
|
|
};
|
|
} |