nix-config/home/programs/media/spicetify.nix

40 lines
780 B
Nix
Raw Normal View History

2025-09-03 10:03:29 +02:00
{ pkgs, inputs, ... }:
2025-08-16 19:28:53 +02:00
{
2025-09-03 10:03:29 +02:00
imports = [
inputs.spicetify-nix.homeManagerModules.default
];
programs.spicetify =
let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system};
in
2025-08-16 19:28:53 +02:00
{
2025-09-03 10:03:29 +02:00
enable = true;
spotifyPackage = pkgs.spotify;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
enabledExtensions = with spicePkgs.extensions; [
bookmark
fullAppDisplay
keyboardShortcut
popupLyrics
shuffle
autoVolume
betterGenres
adblock
wikify
songStats
];
enabledCustomApps = with spicePkgs.apps; [
lyricsPlus
newReleases
marketplace
];
#enabledSnippets = with spicePkgs.snippets; [ ];
};
2025-08-16 19:28:53 +02:00
}