❄️ Dotfiles for our NixOS system configuration.
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}