18 lines
367 B
Nix
18 lines
367 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
|
|
in {
|
|
imports = [inputs.spicetify-nix.homeManagerModules.default];
|
|
programs.spicetify = {
|
|
enable = true;
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
hidePodcasts
|
|
beautifulLyrics
|
|
fullAlbumDate
|
|
volumeProfiles
|
|
];
|
|
};
|
|
}
|