28 lines
593 B
Nix
28 lines
593 B
Nix
{ pkgs, lib, spicetify-nix, ... }:
|
|
|
|
let
|
|
spicePkgs = spicetify-nix.legacyPackages.${pkgs.stdenv.system};
|
|
in
|
|
|
|
{
|
|
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";
|
|
};
|
|
} |