summaryrefslogtreecommitdiff
path: root/hm/soft/spicetify.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soft/spicetify.nix')
-rw-r--r--hm/soft/spicetify.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/hm/soft/spicetify.nix b/hm/soft/spicetify.nix
deleted file mode 100644
index f9a4d0c..0000000
--- a/hm/soft/spicetify.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- inputs,
- pkgs,
- config,
- lib,
- ...
-}:
-let
- cfg = config.hm.soft.spicetify;
- spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system};
-in
-{
- imports = [ inputs.spicetify-nix.homeManagerModules.default ];
-
- options.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";
- };
- };
-}