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

9 lines
218 B
Nix
Raw Normal View History

2023-06-01 17:07:54 +00:00
{ pkgs, lib, ... }: {
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-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
};
}