From 290c2a0591278e059f5917c00a0a984f88afa463 Mon Sep 17 00:00:00 2001 From: Tyler Starr Date: Thu, 11 Jul 2024 22:02:22 -0700 Subject: [PATCH] workaround for steam --- provision/modules/gaming/steam.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/provision/modules/gaming/steam.nix b/provision/modules/gaming/steam.nix index f11f3f59..f33dbec6 100644 --- a/provision/modules/gaming/steam.nix +++ b/provision/modules/gaming/steam.nix @@ -10,9 +10,13 @@ in { hardware.pulseaudio.support32Bit = config.hardware.pulseaudio.enable; hardware.steam-hardware.enable = true; - + # Digital distribution platform for purchasing and playing video games. + programs.steam = { + enable = true; + # Workaround from: https://github.com/NixOS/nixpkgs/issues/236561 + package = with pkgs; steam.override { extraPkgs = pkgs: [ attr ]; }; + }; environment.systemPackages = with pkgs; [ - steam # Digital distribution platform for purchasing and playing video games. steamtinkerlaunch # Launcher and optimization tool for Steam games. gamescope # Utility for running games using Valve's Steam Play compatibility layer with improved performance and compatibility. ];