aboutsummaryrefslogtreecommitdiff
path: root/modules/global.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/global.nix')
-rw-r--r--modules/global.nix9
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"}";