nichts/modules/programs/gui/spotify.mod.nix

34 lines
678 B
Nix
Raw Normal View History

2025-07-19 00:45:47 +02:00
{
inputs,
pkgs,
...
}: let
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
spicetify = inputs.spicetify-nix.lib.mkSpicetify pkgs {
enable = true;
theme = spicePkgs.themes.catppuccin;
colorScheme = "mocha";
# enabledCustomApps = with spicePkgs.apps; [
# newReleases
# lyricsPlus
# ncsVisualizer
# ];
enabledExtensions = with spicePkgs.extensions; [
shuffle
hidePodcasts
keyboardShortcut
groupSession
keyboardShortcut
betterGenres
autoVolume
lastfm
];
};
in {
environment.systemPackages =
[spicetify]
++ (with pkgs; [
sptlrx
]);
}