From 26f91e4e19013d037857cc7c9eddfa152a7586c3 Mon Sep 17 00:00:00 2001 From: Toast Date: Wed, 20 Mar 2024 10:05:14 +0100 Subject: [PATCH] Gaming/steam: use proton-ge from nixpkgs --- roles/gaming/programs/steam.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/gaming/programs/steam.nix b/roles/gaming/programs/steam.nix index 5499456..a2f48f6 100644 --- a/roles/gaming/programs/steam.nix +++ b/roles/gaming/programs/steam.nix @@ -1,4 +1,4 @@ -{ config, flakeSelf, ... }: + { config, flakeSelf, pkgs, ... }: let nix-gaming = flakeSelf.inputs.nix-gaming; @@ -16,8 +16,8 @@ in # Doubt that I'll use it, but I'll enable it anyways remotePlay.openFirewall = true; - extraCompatPackages = with nix-gaming.packages.x86_64-linux; [ - proton-ge + extraCompatPackages = with pkgs; [ + proton-ge-bin ]; };