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

@@ -32,10 +32,15 @@
boot.loader.grub.efiSupport = true; boot.loader.grub.efiSupport = true;
boot.loader.grub.efiInstallAsRemovable = true; boot.loader.grub.efiInstallAsRemovable = true;
nix.settings.experimental-features = [ nix.settings = {
experimental-features = [
"flakes" "flakes"
"nix-command" "nix-command"
]; ];
trusted-users = [
"doloro"
];
};
networking.hostName = "doloroo-main"; # Define your hostname. networking.hostName = "doloroo-main"; # Define your hostname.

View File

@@ -1,4 +1,9 @@
{ pkgs, lib, inputs, ... }: {
pkgs,
lib,
inputs,
...
}:
let let
arrpc_overlay = ( arrpc_overlay = (
self: super: { self: super: {
@@ -13,10 +18,29 @@ let
}); });
} }
); );
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_overlay = self: super: {
gamescope = super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix" { }; gamescope =
super.callPackage "${inputs.nixpkgs-gamescope}/pkgs/by-name/ga/gamescope/package.nix"
{ };
}; };
in in
{ {
nixpkgs.overlays = [ arrpc_overlay gamescope_overlay ]; nixpkgs.overlays = [
arrpc_overlay
gamescope_overlay
youtube-music
];
} }