feat: Disable spotifyd

This commit is contained in:
ulic-youthlic 2025-11-11 18:11:23 +08:00
parent da14bf6c2f
commit b9908209c8
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
6 changed files with 1 additions and 60 deletions

View file

@ -166,26 +166,6 @@
}, },
"version": "v3.10.0" "version": "v3.10.0"
}, },
"spotifyd": {
"cargoLocks": null,
"date": "2025-09-04",
"extract": null,
"name": "spotifyd",
"passthru": null,
"pinned": false,
"src": {
"deepClone": false,
"fetchSubmodules": false,
"leaveDotGit": false,
"name": null,
"rev": "f1acee9c6160db92dcd4214e96654cbbaed0e38a",
"sha256": "sha256-dcc+sklPJvV34U1A/eTD1kfIey4o5/kPq4yd72ey7LE=",
"sparseCheckout": [],
"type": "git",
"url": "https://github.com/ulic-youthlic/spotifyd.git"
},
"version": "f1acee9c6160db92dcd4214e96654cbbaed0e38a"
},
"spotx": { "spotx": {
"cargoLocks": null, "cargoLocks": null,
"date": "2025-11-07", "date": "2025-11-07",

View file

@ -32,7 +32,6 @@
kvm.enable = true; kvm.enable = true;
atuin.enable = true; atuin.enable = true;
ion.enable = true; ion.enable = true;
spotifyd.enable = true;
awscli = { awscli = {
enable = true; enable = true;
url = "http://localhost:8491"; url = "http://localhost:8491";

View file

@ -58,8 +58,3 @@ url.name = "yustar_$ver.zip"
[nvim_vim-startuptime] [nvim_vim-startuptime]
fetch.github = "dstein64/vim-startuptime" fetch.github = "dstein64/vim-startuptime"
src.git = "https://github.com/dstein64/vim-startuptime.git" src.git = "https://github.com/dstein64/vim-startuptime.git"
[spotifyd]
fetch.git = "https://github.com/ulic-youthlic/spotifyd.git"
src.git = "https://github.com/ulic-youthlic/spotifyd.git"
src.branch = "push-mrxqoqwxqsqt"

View file

@ -12,7 +12,6 @@ in
./helix.nix ./helix.nix
./cliphist.nix ./cliphist.nix
./zulip.nix ./zulip.nix
./spotifyd.nix
./nautilus.nix ./nautilus.nix
./neovim-nightly.nix ./neovim-nightly.nix
./vim.nix ./vim.nix

View file

@ -1,5 +0,0 @@
{outputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
spotifyd = outputs.packages.${system}.spotifyd';
}

View file

@ -1,27 +0,0 @@
{
srcs,
spotifyd,
rustPlatform,
...
}: let
inherit (srcs.spotifyd) src date version;
in
spotifyd.overrideAttrs (
_final: prev: {
inherit src;
version =
if prev.version != "0.4.1"
then
throw ''
Please remove <pkgs/spotifyd.nix>
''
else "0-unstable-${date}-git${version}";
cargoDeps = rustPlatform.fetchCargoVendor {
inherit
(prev)
src
;
hash = "sha256-WwShp1ebk89cBqRXqKDgbwGZraCDjQAOxoL4uEIq2aw=";
};
}
)