20 lines
406 B
Nix
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
|
|
};
|
|
|
|
|
|
|
|
}
|