nix-config/users/common/programs/spicetify.nix

17 lines
367 B
Nix
Raw Normal View History

2023-10-13 16:55:01 +02:00
{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
];
};
}