2023-08-28 17:18:26 +02:00
|
|
|
{ inputs, pkgs, config, lib, ... }:
|
2023-06-18 18:10:20 +02:00
|
|
|
let
|
|
|
|
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
|
2023-08-28 17:18:26 +02:00
|
|
|
themeMap = lib.fix (self: {
|
2023-06-18 18:10:20 +02:00
|
|
|
"Catppuccin Mocha" = spicePkgs.themes.catppuccin-mocha;
|
|
|
|
"Catppuccin Latte" = spicePkgs.themes.catppuccin-latte;
|
|
|
|
"Catppuccin Frappe" = spicePkgs.themes.catppuccin-frappe;
|
|
|
|
"Catppuccin Macchiato" = spicePkgs.themes.catppuccin-macchiato;
|
2023-07-06 21:34:24 +02:00
|
|
|
|
2023-08-28 17:18:26 +02:00
|
|
|
default.light = self."Catppuccin Latte";
|
|
|
|
default.dark = self."Catppuccin Macchiato";
|
|
|
|
});
|
2023-06-18 18:10:20 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
programs.spicetify = {
|
|
|
|
enable = true;
|
2023-07-06 21:34:24 +02:00
|
|
|
|
2023-08-14 13:49:55 +02:00
|
|
|
theme = config.satellite.theming.get themeMap;
|
2023-07-06 21:34:24 +02:00
|
|
|
|
2023-06-18 18:10:20 +02:00
|
|
|
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
|
|
|
|
}
|