1
Fork 0
satellite/hosts/nixos/common/optional/desktop/steam.nix

8 lines
248 B
Nix
Raw Normal View History

{ lib, ... }: {
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
};
}