🎵 Spicetify with catppucchin theme

This commit is contained in:
2025-01-09 22:23:28 +01:00
parent e80f492b4e
commit 0df9d996c6
4 changed files with 79 additions and 1 deletions

View File

@ -0,0 +1,34 @@
{
pkgs,
inputs,
lib,
...
}:
{
imports = [ inputs.spicetify-nix.homeManagerModules.default ];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
theme = import ../theme.nix;
in
{
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; [
pointer
];
theme = lib.mkForce spicePkgs.themes.catppuccin;
colorScheme = lib.mkForce theme.flavor;
};
}