17 lines
367 B
Nix
17 lines
367 B
Nix
{spicePkgs, ...}: {
|
|
programs.spicetify = {
|
|
enable = true;
|
|
theme = spicePkgs.themes.RetroBlur;
|
|
colorScheme = "Purple";
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
fullAppDisplay
|
|
shuffle # shuffle+ (special characters are sanitized out of ext names)
|
|
hidePodcasts
|
|
fullAlbumDate
|
|
skipStats
|
|
history
|
|
];
|
|
};
|
|
}
|