aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/spicetify.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home-manager/spicetify.nix')
-rw-r--r--modules/home-manager/spicetify.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/home-manager/spicetify.nix b/modules/home-manager/spicetify.nix
new file mode 100644
index 0000000..e331ad3
--- /dev/null
+++ b/modules/home-manager/spicetify.nix
@@ -0,0 +1,21 @@
+{ config, lib, pkgs, inputs, ... }:
+let
+ cfg = config.spicetify;
+ spicePkgs = inputs.spicetify-nix.packages.${pkgs.system}.default;
+in {
+ options.spicetify.enable = lib.mkEnableOption "Enable and configure Spicetify";
+ config = lib.mkIf cfg.enable {
+ programs.spicetify = {
+ enable = true;
+ enabledSnippets = with spicePkgs.snippets; [
+ pointer
+ sonicDancing
+ modernScrollbar
+ nyanCatProgressBar
+ declutterNowPlayingBar
+ ];
+ theme = spicePkgs.themes.sleek;
+ colorScheme = "coral";
+ };
+ };
+}