diff --git a/home/gui/home.nix b/home/gui/home.nix index 10c81c94..52eac590 100644 --- a/home/gui/home.nix +++ b/home/gui/home.nix @@ -6,22 +6,22 @@ config = mkIf config.passthrough.gui { # cursor theme - home.pointerCursor = { - package = mkDefault pkgs.bibata-cursors; - name = mkDefault "Bibata-Modern-Classic"; + home.pointerCursor = mkDefault { + package = pkgs.bibata-cursors; + name = "Bibata-Modern-Classic"; size = 24; }; # gtk theme - gtk.theme = { - package = mkDefault pkgs.whitesur-gtk-theme; - name = mkDefault "WhiteSur-Dark"; + gtk.theme = mkDefault { + package = pkgs.whitesur-gtk-theme; + name = "WhiteSur-Dark"; }; # gtk icons - gtk.iconTheme = { - package = mkDefault pkgs.papirus-icon-theme; - name = mkDefault "Papirus-Dark"; + gtk.iconTheme = mkDefault { + package = pkgs.papirus-icon-theme; + name = "Papirus-Dark"; }; # unify qt theme diff --git a/home/vscode/home.nix b/home/vscode/home.nix index 6662884b..6fb4b99b 100644 --- a/home/vscode/home.nix +++ b/home/vscode/home.nix @@ -3,6 +3,7 @@ , config , ... }: with lib; let cfg = config.passthrough.vscode; + theme = config.passthrough.catppuccin.enable; in mkIf cfg.enable { programs.vscode = { enable = true; @@ -15,8 +16,8 @@ in mkIf cfg.enable { bbenoist.nix golang.go rust-lang.rust-analyzer ]; userSettings = { - "workbench.colorTheme" = "Catppuccin Frappé"; - "workbench.iconTheme" = "catppuccin-frappe"; + "workbench.colorTheme" = mkIf theme "Catppuccin Frappé"; + "workbench.iconTheme" = mkIf theme "catppuccin-frappe"; "[nix]"."editor.tabSize" = 2; }; };