diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-08 14:30:41 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-08 14:30:41 +0200 |
commit | 395bb044222179d459b584d804198eb8fbe0aeda (patch) | |
tree | f7118cf9e9a30ecc2c14be349f15d001f2488fad | |
parent | 281ae7f645767955ab36367580d2cea4e40eacc7 (diff) | |
download | nixos-configuration-395bb044222179d459b584d804198eb8fbe0aeda.tar.gz nixos-configuration-395bb044222179d459b584d804198eb8fbe0aeda.tar.bz2 nixos-configuration-395bb044222179d459b584d804198eb8fbe0aeda.zip |
chore(clean): no more spotify
-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 - ]; - }; -} |