16 lines
365 B
Nix
16 lines
365 B
Nix
{ inputs, pkgs, ... }:
|
|
let
|
|
spicepkgs = inputs.spicetify.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
imports = [ inputs.spicetify.homeManagerModules.default ];
|
|
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledExtensions = with spicepkgs.extensions; [
|
|
lastfm
|
|
fullAppDisplayMod
|
|
];
|
|
enabledCustomApps = with spicepkgs.apps; [ lyricsPlus ];
|
|
};
|
|
}
|