Gaming/steam: use proton-ge from nixpkgs

This commit is contained in:
Toast 2024-03-20 10:05:14 +01:00
parent 47e6ac288b
commit 26f91e4e19

View file

@ -1,4 +1,4 @@
{ config, flakeSelf, ... }: { config, flakeSelf, pkgs, ... }:
let let
nix-gaming = flakeSelf.inputs.nix-gaming; nix-gaming = flakeSelf.inputs.nix-gaming;
@ -16,8 +16,8 @@ in
# Doubt that I'll use it, but I'll enable it anyways # Doubt that I'll use it, but I'll enable it anyways
remotePlay.openFirewall = true; remotePlay.openFirewall = true;
extraCompatPackages = with nix-gaming.packages.x86_64-linux; [ extraCompatPackages = with pkgs; [
proton-ge proton-ge-bin
]; ];
}; };