❄️ Dotfiles for our NixOS system configuration.
at master 336 B view raw
1{ lib, config, ... }: 2 3{ 4 config = lib.mkIf config.settings.profiles.graphical.enable { 5 programs.steam = { 6 enable = true; 7 remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play 8 dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server 9 }; 10 }; 11}