added steam

This commit is contained in:
2025-06-08 13:43:37 +03:00
parent 30ea996a40
commit ef204b0dd4
5 changed files with 28 additions and 4 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ in
remmina
nekoray
python3
# prismlauncher
prismlauncher
kdePackages.kcalc
ayugram-desktop
distrobox
+16
View File
@@ -0,0 +1,16 @@
{ lib, ... }:
{
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
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
];
}