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"; + }; + }; + } + ]; + }; + }; }; }