nixos/home/modules/user/spotify/default.nix
2026-02-22 19:33:10 +01:00

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;
};
}