diff options
Diffstat (limited to 'hm/soft/spicetify.nix')
| -rw-r--r-- | hm/soft/spicetify.nix | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/hm/soft/spicetify.nix b/hm/soft/spicetify.nix new file mode 100644 index 0000000..96c4d0d --- /dev/null +++ b/hm/soft/spicetify.nix @@ -0,0 +1,24 @@ +{ inputs, pkgs, config, lib, ... }: +let + cfg = config.szpont.hm.soft.spicetify; + spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}; +in +{ + imports = [ inputs.spicetify-nix.homeManagerModules.default ]; + + options.szpont.hm.soft.spicetify.enable = lib.mkEnableOption "spicetify config"; + + config = lib.mkIf cfg.enable { + programs.spicetify = { + enable = true; + + enabledExtensions = with spicePkgs.extensions; [ + adblockify + hidePodcasts + ]; + + theme = spicePkgs.themes.catppuccin; + colorScheme = "mocha"; + }; + }; +} |
