19 lines
324 B
Nix
19 lines
324 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: let
|
|
spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in {
|
|
programs.spicetify = {
|
|
enable = true;
|
|
|
|
enabledExtensions = with spicePkgs.extensions; [
|
|
adblock
|
|
hidePodcasts
|
|
];
|
|
|
|
theme = lib.mkForce spicePkgs.themes.text;
|
|
};
|
|
}
|