fixed spicetify :3

This commit is contained in:
2025-01-25 00:09:42 -05:00
parent 5a7b6dcc5b
commit 9e51e731e2
3 changed files with 124 additions and 0 deletions

18
mods/mini-spice.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, inputs, ... }:
{
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
{
enable = true;
enabledExtensions = with spicePkgs.extensions; [
adblock
hidePodcasts
shuffle # shuffle+ (special characters are sanitized out of extension names)
];
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
};
}