nixos/desktop/gaming.nix
2025-11-27 11:24:32 -08:00

20 lines
406 B
Nix

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