home-manager/systems/common/spiceify.nix

24 lines
459 B
Nix

{
pkgs,
spicetify,
...
}: let
spicePkgs = spicetify.packages.${pkgs.system}.default;
in {
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.text;
colorScheme = "CatppuccinLatte";
enabledExtensions = with spicePkgs.extensions; [
shuffle # shuffle+ (special characters are sanitized out of ext names)
groupSession
wikify
fullScreen
playlistIntersection
phraseToPlaylist
];
};
}