diff options
| -rw-r--r-- | home/nipsy/common/optional/desktops/gtk.nix | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/home/nipsy/common/optional/desktops/gtk.nix b/home/nipsy/common/optional/desktops/gtk.nix index 92f022b..7b550e9 100644 --- a/home/nipsy/common/optional/desktops/gtk.nix +++ b/home/nipsy/common/optional/desktops/gtk.nix @@ -8,8 +8,16 @@ gtk = { colorScheme = "dark"; enable = true; - gtk3.colorScheme = "dark"; - gtk4.colorScheme = "dark"; + + gtk3 = { + colorScheme = "dark"; + extraConfig.gtk-application-prefer-dark-theme = 1; + }; + + gtk4 = { + colorScheme = "dark"; + extraConfig.gtk-application-prefer-dark-theme = 1; + }; iconTheme = { name = "Adwaita"; |
