diff options
Diffstat (limited to 'modules/programs/spicetify.nix')
| -rw-r--r-- | modules/programs/spicetify.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/modules/programs/spicetify.nix b/modules/programs/spicetify.nix new file mode 100644 index 0000000..4a7e003 --- /dev/null +++ b/modules/programs/spicetify.nix @@ -0,0 +1,34 @@ +{ + flake.modules.homeManager.spicetify = + { + pkgs, + inputs, + ... + }: + let + spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}; + in + { + imports = [ + inputs.spicetify-nix.homeManagerModules.spicetify + ]; + + programs.spicetify = { + enable = true; + enabledSnippets = with spicePkgs.snippets; [ + pointer + sonicDancing + modernScrollbar + nyanCatProgressBar + declutterNowPlayingBar + ]; + + enabledExtensions = with spicePkgs.extensions; [ + keyboardShortcut + ]; + + theme = spicePkgs.themes.sleek; + colorScheme = "Coral"; + }; + }; +} |
