first try

This commit is contained in:
2025-12-07 00:53:22 -05:00
commit e048d4d5c7
17 changed files with 455 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{pkgs, environment, ...}:
{
programs.steam = {
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
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers
};
environment.systemPackages = with pkgs; [
obs-studio
ckan
lutris
prismlauncher
];
}