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,
lib,
inputs,
system,
...
}:
let
@@ -31,15 +32,21 @@ let
});
}
);
pkgs_gamescope = import inputs.nixpkgs-gamescope {
inherit system;
config = {
allow_unfree = true;
};
};
gamescope_overlay = self: super: {
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
{
nixpkgs.overlays = [
arrpc_overlay
# arrpc_overlay # idk i flake update and it doesnt wanna
gamescope_overlay
youtube-music
];