From 17fea084aa0f4f85f4efd08452c204a0789d6539 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Mon, 1 Jul 2024 12:48:09 -0700 Subject: [PATCH] dconf enable and qt theme in theme.nix --- home/modules/theme.nix | 4 ++++ hosts/snowhawk/configuration.nix | 5 ----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/home/modules/theme.nix b/home/modules/theme.nix index 2206509..5178ab6 100644 --- a/home/modules/theme.nix +++ b/home/modules/theme.nix @@ -29,6 +29,7 @@ in }; # Set system dark mode + programs.dconf.enable = true; dconf.settings = { "org/freedesktop/appearance" = { color-scheme = 1; @@ -38,6 +39,9 @@ in }; }; + # I think I need a gtk theme? gnome-keyring + qt.platformTheme = "gtk2"; + home.pointerCursor = lib.mkIf cfg.cursor ( let diff --git a/hosts/snowhawk/configuration.nix b/hosts/snowhawk/configuration.nix index 7a5b039..74dafff 100644 --- a/hosts/snowhawk/configuration.nix +++ b/hosts/snowhawk/configuration.nix @@ -69,11 +69,6 @@ services.gnome.gnome-keyring.enable = true; - programs.dconf.enable = true; - - # I think I need a gtk theme? gnome-keyring - qt.platformTheme = "gtk2"; - # Enable automatic login for the user. services.displayManager.autoLogin = { enable = true;