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, 0 insertions, 21 deletions
diff --git a/modules/home-manager/spicetify.nix b/modules/home-manager/spicetify.nix
deleted file mode 100644
index d961779..0000000
--- a/modules/home-manager/spicetify.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ config, lib, pkgs, inputs, ... }:
-let
- cfg = config.spicetify;
- spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.system};
-in {
- options.spicetify.enable = lib.mkEnableOption "Enable Spicetify integration";
- config = lib.mkIf cfg.enable {
- programs.spicetify = {
- enable = true;
- enabledSnippets = with spicePkgs.snippets; [
- pointer
- sonicDancing
- modernScrollbar
- nyanCatProgressBar
- declutterNowPlayingBar
- ];
- theme = spicePkgs.themes.sleek;
- colorScheme = "coral";
- };
- };
-}