From 68337c64114e945ef88f495dc910ff2eb8c39b6c Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Fri, 4 Jul 2025 14:32:18 +0300 Subject: [PATCH] fix: dark gnome theme by default --- modules/home/theme/catppuccin.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/theme/catppuccin.nix b/modules/home/theme/catppuccin.nix index d0663a1..0e14fc2 100644 --- a/modules/home/theme/catppuccin.nix +++ b/modules/home/theme/catppuccin.nix @@ -136,6 +136,11 @@ in "gtk-4.0/gtk.css".source = "${gtk4Dir}/gtk.css"; "gtk-4.0/gtk-dark.css".source = "${gtk4Dir}/gtk-dark.css"; }; + dconf.settings = { + "org/gnome/desktop/interface" = { + color-scheme = if cfg.flavor == "latte" then "default" else "prefer-dark"; + }; + }; }) ]; }