From e8a009b6f794f11c5992fb0f689cccb85e74a053 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 8 Dec 2023 18:56:06 +0530 Subject: [PATCH] feat: add dconf settings for dark theme with adw-gtk3 --- home.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home.nix b/home.nix index 3cbc1e5..a188a19 100644 --- a/home.nix +++ b/home.nix @@ -18,4 +18,11 @@ }; stateVersion = "23.11"; }; + dconf.settings = { + # Enable dark theme using adw-gtk3 to make GTK3 apps look coherent + "org/gnome/desktop/interface" = { + gtk-theme = "adw-gtk3-dark"; + color-scheme = "prefer-dark"; + }; + }; }