aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-11-16 11:52:14 -0800
committerMark Nipper <nipsy@bitgnome.net>2025-11-16 11:52:14 -0800
commite04c5361e10171619caf4acc7259eb2bbd4c0648 (patch)
tree41b6cc2cfe65d820c32a0de04a95c47846e025f5 /home
parentc37b97771317518c8ed5ee4c78f151c205b07d4c (diff)
downloadnix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar.gz
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar.bz2
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar.lz
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar.xz
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.tar.zst
nix-e04c5361e10171619caf4acc7259eb2bbd4c0648.zip
Reswizzle selecting GTK dark theme
Diffstat (limited to '')
-rw-r--r--home/nipsy/common/optional/desktops/gtk.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/home/nipsy/common/optional/desktops/gtk.nix b/home/nipsy/common/optional/desktops/gtk.nix
index bac2060..de84285 100644
--- a/home/nipsy/common/optional/desktops/gtk.nix
+++ b/home/nipsy/common/optional/desktops/gtk.nix
@@ -1,11 +1,15 @@
{
- home.sessionVariables = {
- GTK_THEME = "Adwaita:dark";
+ dconf.settings = {
+ "org/gnome/desktop/interface".color-scheme = "prefer-dark"
};
- gtk = {
- enable = true;
- gtk3.extraConfig.gtk-application-prefer-dark-theme = true;
- gtk4.extraConfig.gtk-application-prefer-dark-theme = true;
- };
+ #home.sessionVariables = {
+ # GTK_THEME = "Adwaita:dark";
+ #};
+
+ #gtk = {
+ # enable = true;
+ # gtk3.extraConfig.gtk-application-prefer-dark-theme = true;
+ # gtk4.extraConfig.gtk-application-prefer-dark-theme = true;
+ #};
}