mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 18:06:14 +01:00
19 lines
371 B
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
|
|
];
|
|
};
|
|
}
|