diff options
-rw-r--r-- | home-manager/stvnliu/home.nix | 1 | ||||
-rw-r--r-- | home-manager/stvnliu/spicetify.nix | 29 |
2 files changed, 0 insertions, 30 deletions
diff --git a/home-manager/stvnliu/home.nix b/home-manager/stvnliu/home.nix index 9dd9f95..eeab546 100644 --- a/home-manager/stvnliu/home.nix +++ b/home-manager/stvnliu/home.nix @@ -13,7 +13,6 @@ ./ags ./xdg.nix ./stylix.nix - ./spicetify.nix ./scripts ./programs ./packages diff --git a/home-manager/stvnliu/spicetify.nix b/home-manager/stvnliu/spicetify.nix deleted file mode 100644 index 620b0c0..0000000 --- a/home-manager/stvnliu/spicetify.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ pkgs -, lib -, inputs -, ... -}: -let - spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.system}; -in -{ - # allow spotify to be installed if you don't have unfree enabled already - nixpkgs.config.allowUnfreePredicate = pkg: - builtins.elem (lib.getName pkg) [ - "spotify" - ]; - programs.spicetify = { - enable = true; - #theme = spicePkgs.themes.onepunch; - #colorScheme = "Dark"; - enabledCustomApps = with spicePkgs.apps; [ - lyricsPlus - ]; - enabledExtensions = with spicePkgs.extensions; [ - adblock - fullAppDisplay - shuffle # shuffle+ (special characters are sanitized out of ext names) - hidePodcasts - ]; - }; -} |