From 383bc9805259771dc13ddeee3f31db8c1c2e8635 Mon Sep 17 00:00:00 2001 From: tux Date: Fri, 15 May 2026 09:01:59 +0530 Subject: [PATCH] feat(gaming): add proton-ge-bin to steam --- modules/nixos/gaming/steam.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/modules/nixos/gaming/steam.nix b/modules/nixos/gaming/steam.nix index 6ad062a..bce53b3 100644 --- a/modules/nixos/gaming/steam.nix +++ b/modules/nixos/gaming/steam.nix @@ -1,8 +1,11 @@ { - flake.modules.nixos.gaming = { - programs.steam = { - enable = true; - protontricks.enable = true; + flake.modules.nixos.gaming = + { pkgs, ... }: + { + programs.steam = { + enable = true; + protontricks.enable = true; + extraCompatPackages = with pkgs; [ proton-ge-bin ]; + }; }; - }; }