qol(youtube music): changed src of ytm

This commit is contained in:
2025-10-12 18:09:21 +01:00
parent 857bb5dba3
commit e03dd8b13d
2 changed files with 38 additions and 9 deletions

View File

@@ -1,4 +1,9 @@
{ pkgs, lib, inputs, ... }:
{
pkgs,
lib,
inputs,
...
}:
let
arrpc_overlay = (
self: super: {
@@ -13,10 +18,29 @@ let
});
}
);
gamescope_overlay = self: super: {
gamescope = super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix" { };
};
youtube-music = (
self: super: {
youtube-music = super.youtube-music.overrideAttrs (prev: {
version = "git";
src = pkgs.fetchFromGitHub {
owner = "pear-devs";
repo = "pear-desktop";
tag = "v3.11.0";
sha256 = "sha256-M8YFpeauM55fpNyHSGQm8iZieV0oWqOieVThhglKKPE=";
};
});
}
);
gamescope_overlay = self: super: {
gamescope =
super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix"
{ };
};
in
{
nixpkgs.overlays = [ arrpc_overlay gamescope_overlay ];
nixpkgs.overlays = [
arrpc_overlay
gamescope_overlay
youtube-music
];
}