Update README.md & steam

This commit is contained in:
2023-11-04 02:33:48 +01:00
committed by soraefir
parent 153c1a8359
commit 60f9b486b8
7 changed files with 45 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
{ lib, config, pkgs, ... }:
let cfg = config.hostcfg.make.game;
in {
config = lib.mkIf cfg {
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
};
};
}