Files
nixos-configuration/games.nix
2022-10-17 14:36:07 +02:00

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