home-manager/systems/common/spiceify.nix
2024-02-13 20:56:12 +01:00

27 lines
511 B
Nix

{
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
];
};
}