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
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
];
};