diff options
Diffstat (limited to 'modules/home-manager/spicetify.nix')
| -rw-r--r-- | modules/home-manager/spicetify.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/home-manager/spicetify.nix b/modules/home-manager/spicetify.nix new file mode 100644 index 0000000..5d245d9 --- /dev/null +++ b/modules/home-manager/spicetify.nix @@ -0,0 +1,26 @@ +{ config, lib, pkgs, inputs, ... }: + +let + spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system}; +in { + options.spicetify.enable = lib.mkEnableOption "Enable Spicetify integration"; + config = lib.mkIf config.spicetify.enable { + programs.spicetify = { + enable = true; + enabledSnippets = with spicePkgs.snippets; [ + pointer + sonicDancing + modernScrollbar + nyanCatProgressBar + declutterNowPlayingBar + ]; + + enabledExtensions = with spicePkgs.extensions; [ + keyboardShortcut + ]; + + theme = spicePkgs.themes.sleek; + colorScheme = "Coral"; + }; + }; +}
\ No newline at end of file |
