Skip to content

Commit

Permalink
Downgrade gamescope
Browse files Browse the repository at this point in the history
  • Loading branch information
amadejkastelic committed Apr 20, 2024
1 parent 20f89eb commit 57fce71
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion home/programs/games/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{
home.packages = with pkgs; [
# inputs.nix-gaming.packages.${pkgs.system}.osu-lazer-bin
gamescope
#gamescope
winetricks
adwsteamgtk
steam-run
Expand Down
17 changes: 17 additions & 0 deletions system/programs/gaming/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,22 @@
environment.systemPackages = with pkgs; [
mangohud
bottles
gamescope
];

# Downgrade gamescope
nixpkgs.overlays = [
(final: prev: {
gamescope = prev.gamescope.overrideAttrs (old: {
version = "3.14.2";
src = prev.fetchFromGitHub {
owner = "ValveSoftware";
repo = "gamescope";
rev = "refs/tags/3.14.2";
fetchSubmodules = true;
hash = "sha256-Ym1kl9naAm1MGlxCk32ssvfiOlstHiZPy7Ga8EZegus=";
};
});
})
];
}

0 comments on commit 57fce71

Please sign in to comment.