From dd8369d01e0f839e1a6d7a5d0a70564209b1a9c6 Mon Sep 17 00:00:00 2001 From: voidarc Date: Tue, 7 Jul 2026 13:52:36 +0100 Subject: [PATCH] enabled dconf explicitly and added xfconf for compat --- modules/system/theming/gtk.nix | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/modules/system/theming/gtk.nix b/modules/system/theming/gtk.nix index e6f49ad..00870ce 100644 --- a/modules/system/theming/gtk.nix +++ b/modules/system/theming/gtk.nix @@ -34,17 +34,23 @@ icon.enable = true; }; }; - programs.dconf.profiles.user.databases = [ - { - lockAll = false; - settings = { - "org/gnome/desktop/interface" = { - gtk-theme = "catppuccin-mocha-mauve-compact+rimless"; - icon-theme = "Papirus"; - color-scheme = "prefer-dark"; - }; - }; - } - ]; + programs = { + xfconf.enable = true; + dconf = { + enable = true; + profiles.user.databases = [ + { + lockAll = false; + settings = { + "org/gnome/desktop/interface" = { + gtk-theme = "catppuccin-mocha-mauve-compact+rimless"; + icon-theme = "Papirus"; + color-scheme = "prefer-dark"; + }; + }; + } + ]; + }; + }; }; }