diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/global.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/global.nix b/modules/global.nix index 463da2e..a8b23d5 100644 --- a/modules/global.nix +++ b/modules/global.nix @@ -106,12 +106,17 @@ in gtk4.extraConfig.gtk-application-prefer-dark-theme = if scheme.light then 0 else 1; theme = { name = "${if scheme.light then "Adwaita" else "Adwaita-dark"}"; - # package = pkgs.gnome.gnome-themes-extra; + package = pkgs.gnome-themes-extra; + }; + iconTheme = { + name = "Adwaita-dark"; + package = pkgs.adwaita-icon-theme; }; }; qt = { - platformTheme.name = "gnome"; + enable = true; + platformTheme.name = "adwaita"; style = { package = pkgs.adwaita-qt; name = "${if scheme.light then "adwaita" else "adwaita-dark"}"; |