18 lines
362 B
Nix
18 lines
362 B
Nix
{ pkgs, spicetify-nix, ... }:
|
|
{
|
|
programs.spicetify =
|
|
let
|
|
spicePkgs = spicetify-nix.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
shuffle
|
|
trashbin
|
|
featureShuffle
|
|
history
|
|
oneko
|
|
];
|
|
theme = spicePkgs.themes.catppuccin;
|
|
};
|
|
}
|