spotify: add spicetify-nix

This commit is contained in:
Bloxx12 2025-07-19 00:45:47 +02:00
commit 1f8eab22b4
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
4 changed files with 62 additions and 1 deletions

View file

@ -0,0 +1,33 @@
{
inputs,
pkgs,
...
}: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
spicetify = inputs.spicetify-nix.lib.mkSpicetify pkgs {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
# enabledCustomApps = with spicePkgs.apps; [
# newReleases
# lyricsPlus
# ncsVisualizer
# ];
enabledExtensions = with spicePkgs.extensions; [
shuffle
hidePodcasts
keyboardShortcut
groupSession
keyboardShortcut
betterGenres
autoVolume
lastfm
];
};
in {
environment.systemPackages =
[spicetify]
++ (with pkgs; [
sptlrx
]);
}