nixos/home-manager/spicetify.nix
2022-08-16 00:14:40 -04:00

14 lines
369 B
Nix

{ pkgs, lib, spicetify-nix, ... }:
{
imports = [ spicetify-nix.homeManagerModule ];
programs.spicetify = {
spotifyPackage = pkgs.spotify-unwrapped;
spicetifyPackage = pkgs.spicetify-cli;
enable = true;
enabledExtensions = with spicetify-nix.pkgs.extensions; [
"adblock.js"
"hidePodcasts.js"
];
theme = "SpotifyNoPremium";
};
}