18 lines
379 B
Nix
Executable file
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
|
|
};
|
|
|
|
|
|
|
|
}
|