From c91e5e46e6076ea7c4ec291c22aa51e02d2cad23 Mon Sep 17 00:00:00 2001 From: Lilly Date: Mon, 5 Jan 2026 21:20:32 +0000 Subject: [PATCH] Auto-commit: 2026-01-05 21:20:32 --- home/desktop/spicetify.nix | 73 +++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 37 deletions(-) diff --git a/home/desktop/spicetify.nix b/home/desktop/spicetify.nix index b912cf1..efd543b 100644 --- a/home/desktop/spicetify.nix +++ b/home/desktop/spicetify.nix @@ -1,38 +1,37 @@ -# { inputs, pkgs, nixosConfig, lib, ... }: -# let -# cfg = nixosConfig.my.desktop.spicetify; -# in -# { -# imports = [ -# inputs.spicetify-nix.homeManagerModules.default -# ]; -# config = lib.mkIf cfg.enable { -# programs.spicetify = -# let -# spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}; -# in -# { -# enable = true; +{ inputs, pkgs, nixosConfig, lib, ... }: +let + cfg = nixosConfig.my.desktop.spicetify; +in +{ + imports = [ + inputs.spicetify-nix.homeManagerModules.default + ]; + config = lib.mkIf cfg.enable { + programs.spicetify = + let + spicePkgs = inputs.spicetify-nix.legacyPackages.${pkgs.stdenv.hostPlatform.system}; + in + { + enable = true; -# enabledExtensions = with spicePkgs.extensions; [ -# hidePodcasts -# shuffle # shuffle+ (special characters are sanitized out of extension names) -# betterGenres -# lastfm -# adblock -# beautifulLyrics -# aiBandBlocker -# ]; -# enabledCustomApps = with spicePkgs.apps; [ -# betterLibrary -# newReleases -# ]; -# enabledSnippets = with spicePkgs.snippets; [ -# pointer -# ]; -# theme = spicePkgs.themes.catppuccin; -# colorScheme = "mocha"; -# }; -# }; -# } -{} \ No newline at end of file + enabledExtensions = with spicePkgs.extensions; [ + hidePodcasts + shuffle # shuffle+ (special characters are sanitized out of extension names) + betterGenres + lastfm + adblock + beautifulLyrics + aiBandBlocker + ]; + enabledCustomApps = with spicePkgs.apps; [ + betterLibrary + newReleases + ]; + enabledSnippets = with spicePkgs.snippets; [ + pointer + ]; + theme = spicePkgs.themes.catppuccin; + colorScheme = "mocha"; + }; + }; +}