fix(gamescope): made the gamescope overlay actually use the old nixpkg
This commit is contained in:
@@ -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
|
||||||
];
|
];
|
||||||
|
|||||||
Reference in New Issue
Block a user