moved steam to nixosModules

This commit is contained in:
John Lancaster
2025-07-04 10:50:27 -05:00
parent dba3d0b44f
commit 7fef2c9db2
3 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@
./git.nix
./shell.nix
./ssh.nix
./steam.nix
# ./steam.nix
./vscode.nix
../nixosModules/options.nix

View File

@@ -1,10 +0,0 @@
{ config, pkgs, lib, ... }:
{
programs.steam = lib.mkIf config.steam {
enable = true;
gamescopeSession.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
};
}