Gaming dir with heroic and wind, moved steam to dir

This commit is contained in:
2025-02-18 21:56:34 +01:00
parent 1ed7ce2e89
commit 056012a288
5 changed files with 23 additions and 2 deletions

View File

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
imports = [
./steam.nix
];
environment.systemPackages = with pkgs; [
heroic
wine
];
}

8
modules/gaming/steam.nix Normal file
View File

@ -0,0 +1,8 @@
{
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
};
}