fix(gamescope): made the gamescope overlay actually use the old nixpkg

This commit is contained in:
2025-10-12 18:50:41 +01:00
parent 66296ddab7
commit fbaa00aa73

View File

@@ -2,6 +2,7 @@
pkgs, pkgs,
lib, lib,
inputs, inputs,
system,
... ...
}: }:
let let
@@ -31,15 +32,21 @@ let
}); });
} }
); );
pkgs_gamescope = import inputs.nixpkgs-gamescope {
inherit system;
config = {
allow_unfree = true;
};
};
gamescope_overlay = self: super: { gamescope_overlay = self: super: {
gamescope = gamescope =
super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix" pkgs_gamescope.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix"
{ }; { };
}; };
in in
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
arrpc_overlay # arrpc_overlay # idk i flake update and it doesnt wanna
gamescope_overlay gamescope_overlay
youtube-music youtube-music
]; ];