feat: switch to spicetify

This commit is contained in:
Ahwx 2025-10-23 00:16:46 +02:00
parent e10e4cef15
commit f1d4e12726
2 changed files with 29 additions and 0 deletions

28
modules/home/spotify.nix Normal file
View file

@ -0,0 +1,28 @@
{ inputs, pkgs, ... }:
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
programs.spicetify = {
enable = true;
enabledExtensions = with spicePkgs.extensions; [
# adblock
# hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
enabledCustomApps = with spicePkgs.apps; [
newReleases
ncsVisualizer
];
enabledSnippets = with spicePkgs.snippets; [
rotatingCoverart
pointer
];
# theme = spicePkgs.themes.catppuccin;
# colorScheme = "mocha";
theme = spicePkgs.themes.defaultDynamic;
};
}