27 lines
600 B
Nix
27 lines
600 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
programs.spicetify =
|
|
let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
fullAlbumDate
|
|
goToSong
|
|
listPlaylistsWithSong
|
|
playlistIntersection
|
|
skipStats
|
|
phraseToPlaylist
|
|
showQueueDuration
|
|
betterGenres
|
|
playNext
|
|
hidePodcasts
|
|
shuffle # shuffle+ (special characters are sanitized out of extension names)
|
|
];
|
|
theme = spicePkgs.themes.comfy;
|
|
colorScheme = "hikari";
|
|
};
|
|
}
|