nixos/home/modules/user/spotify/default.nix
2026-02-27 23:44:37 +01:00

21 lines
360 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
shuffle
beautifulLyrics
];
theme = lib.mkForce spicePkgs.themes.text;
};
}