qol(youtube music): changed src of ytm
This commit is contained in:
@@ -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.
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user