1
Fork 0
satellite/home/features/desktop/spotify.nix

63 lines
1.8 KiB
Nix
Raw Normal View History

2023-08-28 17:18:26 +02:00
{ inputs, pkgs, config, lib, ... }:
let
spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
2023-08-28 17:18:26 +02:00
themeMap = lib.fix (self: {
2024-01-17 08:31:33 +01:00
"Catppuccin Mocha" = spicePkgs.themes.Comfy;
"Catppuccin Latte" = spicePkgs.themes.Comfy;
"Catppuccin Frappe" = spicePkgs.themes.Comfy;
"Catppuccin Macchiato" = spicePkgs.themes.Comfy;
2023-12-10 12:55:54 +01:00
default.light = self."Catppuccin Latte";
default.dark = self."Catppuccin Macchiato";
});
colorschemeMap = lib.fix (self: {
"Catppuccin Mocha" = "mocha";
"Catppuccin Latte" = "latte";
"Catppuccin Frappe" = "frappe";
"Catppuccin Macchiato" = "macchiato";
2023-08-28 17:18:26 +02:00
default.light = self."Catppuccin Latte";
default.dark = self."Catppuccin Macchiato";
});
in
{
programs.spicetify = {
enable = true;
theme = config.satellite.theming.get themeMap;
2023-12-10 12:55:54 +01:00
colorScheme = config.satellite.theming.get colorschemeMap;
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
2024-01-17 08:31:33 +01:00
# REASON: broken
# https://github.com/the-argus/spicetify-nix/issues/50
# genre
adblock
savePlaylists # Adds a button to duplicate playlists
];
};
# {{{ Persistence
satellite.persistence.at.state.apps.spotify.directories = [
"${config.xdg.configHome}/spotify"
];
satellite.persistence.at.cache.apps.spotify.directories = [
"${config.xdg.cacheHome}/spotify"
];
# }}}
}