From f41dc01f52062286fb94a03491f2a555d3da81cd Mon Sep 17 00:00:00 2001 From: elyth Date: Sat, 5 Oct 2024 16:16:50 +0200 Subject: [PATCH] :wrench: (spicetify): use stylix --- modules/home/opt/music/spicetify/default.nix | 49 ++++++++++---------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/modules/home/opt/music/spicetify/default.nix b/modules/home/opt/music/spicetify/default.nix index cf73afe0..2da0b049 100644 --- a/modules/home/opt/music/spicetify/default.nix +++ b/modules/home/opt/music/spicetify/default.nix @@ -2,12 +2,11 @@ inputs, config, lib, - pkgs, ... }: let inherit (inputs) spicetify; - spicePkgs = spicetify.legacyPackages.${pkgs.system}; + # spicePkgs = spicetify.legacyPackages.${pkgs.system}; inherit (lib) mkIf @@ -25,30 +24,30 @@ in config = mkIf cfg.enable { programs.spicetify = { enable = true; - theme = spicePkgs.themes.comfy; - colorScheme = "custom"; + # theme = spicePkgs.themes.comfy; + # colorScheme = "custom"; - customColorScheme = with config.lib.stylix.colors; { - text = "${base05}"; - subtext = "${base05}"; - sidebar-text = "${base05}"; - main = "${base00}"; - sidebar = "${base01}"; - player = "${base01}"; - card = "${base00}"; - shadow = "${base03}"; - selected-row = "${base03}"; - button = "${base0F}"; - button-active = "${base05}"; - button-disabled = "${base0E}"; - tab-active = "${base03}"; - notification = "${base0A}"; - notification-error = "${base0F}"; - misc = "${base05}"; - alt-text = "${base05}"; - player-bar-bg = "${base01}"; - accent = "${base06}"; - }; + # customColorScheme = with config.lib.stylix.colors; { + # text = "${base05}"; + # subtext = "${base05}"; + # sidebar-text = "${base05}"; + # main = "${base00}"; + # sidebar = "${base01}"; + # player = "${base01}"; + # card = "${base00}"; + # shadow = "${base03}"; + # selected-row = "${base03}"; + # button = "${base0F}"; + # button-active = "${base05}"; + # button-disabled = "${base0E}"; + # tab-active = "${base03}"; + # notification = "${base0A}"; + # notification-error = "${base0F}"; + # misc = "${base05}"; + # alt-text = "${base05}"; + # player-bar-bg = "${base01}"; + # accent = "${base06}"; + # }; }; }; }