home-manager/systems/common/spiceify.nix

24 lines
459 B
Nix
Raw Permalink 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;
2024-02-13 20:50:18 +00:00
theme = spicePkgs.themes.text;
colorScheme = "CatppuccinLatte";
2024-02-13 19:56:08 +00:00
enabledExtensions = with spicePkgs.extensions; [
shuffle # shuffle+ (special characters are sanitized out of ext names)
groupSession
2024-02-13 20:50:18 +00:00
wikify
fullScreen
2024-02-13 19:56:08 +00:00
playlistIntersection
phraseToPlaylist
];
};
}