44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ inputs, pkgs, config, ... }:
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
|
|
themeMap = {
|
|
# TODO: add rosepine themes here
|
|
"Catppuccin Mocha" = spicePkgs.themes.catppuccin-mocha;
|
|
"Catppuccin Latte" = spicePkgs.themes.catppuccin-latte;
|
|
"Catppuccin Frappe" = spicePkgs.themes.catppuccin-frappe;
|
|
"Catppuccin Macchiato" = spicePkgs.themes.catppuccin-macchiato;
|
|
|
|
default.light = spicePkgs.themes.catppuccin-mocha;
|
|
default.dark = spicePkgs.themes.catppuccin-latte;
|
|
};
|
|
in
|
|
{
|
|
programs.spicetify = {
|
|
enable = true;
|
|
|
|
theme = themeMap.${config.lib.stylix.scheme.scheme}
|
|
or themeMap.default.${config.stylix.polarity};
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
fullAppDisplayMod
|
|
shuffle # Working shuffle
|
|
keyboardShortcut
|
|
skipStats # Track my skips
|
|
listPlaylistsWithSong # Adds button to show playlists which contain a song
|
|
playlistIntersection # Shows stuff that's in two different playlists
|
|
fullAlbumDate
|
|
bookmark
|
|
trashbin
|
|
groupSession
|
|
wikify # Shows an artist's wikipedia entry
|
|
songStats
|
|
showQueueDuration
|
|
genre
|
|
adblock
|
|
savePlaylists # Adds a button to duplicate playlists
|
|
];
|
|
};
|
|
|
|
# TODO: persistence
|
|
}
|