home-manager/systems/common/spiceify.nix

27 lines
511 B
Nix
Raw Normal View History

2024-02-13 19:56:08 +00:00
{
pkgs,
spicetify,
...
}: let
spicePkgs = spicetify.packages.${pkgs.system}.default;
in {
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "frappe";
enabledExtensions = with spicePkgs.extensions; [
fullAppDisplay
shuffle # shuffle+ (special characters are sanitized out of ext names)
hidePodcasts
groupSession
playlistIntersection
skipStats
phraseToPlaylist
wikify
songStats
];
};
}