Spotify config refactor

This commit is contained in:
Agatha Lovelace 2023-06-18 12:34:55 +02:00
parent 82ecf9854e
commit 94a767c87b
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
1 changed files with 3 additions and 5 deletions

View File

@ -1,10 +1,8 @@
{ pkgs, lib, ... }: {
programs.spicetify = {
programs.spicetify = with pkgs.spicetify-pkgs; {
enable = true;
enabledCustomApps = with pkgs.spicetify-pkgs.apps; [
marketplace
lyrics-plus
];
enabledExtensions = with extensions; [ shuffle ];
enabledCustomApps = with apps; [ marketplace lyrics-plus ];
};
}