nixos/desktop/gaming.nix
2026-02-15 22:46:17 -08:00

18 lines
379 B
Nix
Executable file

{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
discord # Gaming communication
];
# Steam
programs.steam = with pkgs; {
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
};
}