From 945f5392ca494cd2f66fb28535a18dab33659753 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 12 May 2025 15:37:54 -0500 Subject: [PATCH] feat: added dark theme preference for gtk4 --- modules/home/gui/desktop/theming/gtk/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/gui/desktop/theming/gtk/default.nix b/modules/home/gui/desktop/theming/gtk/default.nix index ab0ea7e..4057be9 100755 --- a/modules/home/gui/desktop/theming/gtk/default.nix +++ b/modules/home/gui/desktop/theming/gtk/default.nix @@ -10,6 +10,11 @@ in gtk-application-prefer-dark-theme = true; }; }; + gtk4 = { + extraConfig = { + gtk-application-prefer-dark-theme = true; + }; + }; cursorTheme = { name = "catppuccin-macchiato-dark-cursors"; package = pkgs.catppuccin-cursors.macchiatoDark;