reNixos/hand7s/programs/spicetify.nix
2025-04-27 12:47:02 +03:00

19 lines
445 B
Nix

{
lib,
pkgs,
inputs,
...
}: {
programs = {
spicetify = {
enabledExtensions = with inputs.spicetify-nix.legacyPackages.${pkgs.system}.extensions; [
adblock
hidePodcasts
shuffle
];
theme = lib.mkForce inputs.spicetify-nix.legacyPackages.${pkgs.system}.themes.text;
colorScheme = lib.mkForce "Spotify";
};
};
}