From 3ab3e39968cafb69fa68dbd61a7729044d08de9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 24 Aug 2024 17:39:24 +0200 Subject: [PATCH] feat(steam): install steam --- nixos/common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/common.nix b/nixos/common.nix index 0a1ebca..5ca4d6b 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -105,6 +105,13 @@ # shell programs.zsh.enable = true; + programs.steam = { + enable = true; + remotePlay.openFirewall = true; + dedicatedServer.openFirewall = true; + localNetworkGameTransfers.openFirewall = true; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;