From bbc1cf2fb11237b205a12693bf94c71ea4d69284 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Wed, 11 Dec 2024 21:57:42 +0200 Subject: [PATCH] Added steam --- hosts/laptop-nixos/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/laptop-nixos/configuration.nix b/hosts/laptop-nixos/configuration.nix index 3c76277..a86c5ca 100644 --- a/hosts/laptop-nixos/configuration.nix +++ b/hosts/laptop-nixos/configuration.nix @@ -85,6 +85,14 @@ }; }; + # Install Steam + 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 + }; + # Install firefox. programs.firefox.enable = true;