nix-infra/common/fragments/graphical/spotify.nix

10 lines
265 B
Nix
Raw Normal View History

2023-10-25 11:34:55 +00:00
{ pkgs, ... }: {
2023-06-18 10:34:55 +00:00
programs.spicetify = with pkgs.spicetify-pkgs; {
2023-06-01 17:07:54 +00:00
enable = true;
2023-12-17 20:05:44 +00:00
spicetifyPackage = pkgs.unstable.spicetify-cli;
2023-06-01 17:07:54 +00:00
2023-06-18 10:34:55 +00:00
enabledExtensions = with extensions; [ shuffle ];
enabledCustomApps = with apps; [ marketplace lyrics-plus ];
2023-06-01 17:07:54 +00:00
};
}