Files
nix-config/home-manager/programs/spicetify.nix

19 lines
371 B
Nix

{
inputs,
pkgs,
...
}: {
imports = [inputs.spicetify-nix.homeManagerModules.default];
programs.spicetify = {
enable = true;
#theme = spicePkgs.themes.catppuccin;
#colorScheme = "mocha";
enabledExtensions = with inputs.spicetify-nix.legacyPackages.${pkgs.system}.extensions; [
fullAppDisplay
shuffle
hidePodcasts
];
};
}