nixdots/home/programs/graphical/apps/spotify/default.nix

61 lines
1.2 KiB
Nix
Raw Normal View History

2024-06-10 19:58:06 +00:00
{
lib,
osConfig,
inputs,
pkgs,
...
}: let
inherit (lib) mkIf;
2024-06-21 09:41:29 +00:00
cfg = osConfig.myOptions.home-manager.programs.applications.spotify;
spicePkgs = inputs.spicetify.legacyPackages.${pkgs.system};
2024-06-10 19:58:06 +00:00
in {
imports = [inputs.spicetify.homeManagerModules.default];
2024-06-10 19:58:06 +00:00
config = mkIf cfg.enable {
programs.spicetify = {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
enabledCustomApps = with spicePkgs.apps; [
# Official apps
lyricsPlus
newReleases
# Community apps
ncsVisualizer
historyInSidebar
];
2024-06-10 19:58:06 +00:00
enabledExtensions = with spicePkgs.extensions; [
# Official extensions
bookmark
2024-06-10 19:58:06 +00:00
fullAppDisplay
loopyLoop
popupLyrics
shuffle
trashbin
# Community extensions
2024-06-10 19:58:06 +00:00
groupSession
skipOrPlayLikedSongs
fullAlbumDate
goToSong
listPlaylistsWithSong
wikify
songStats
showQueueDuration
history
betterGenres
#hidePodcasts
#adblock # I currently have premium
playNext
volumePercentage
copyLyrics
playingSource
2024-06-10 19:58:06 +00:00
];
};
};
}