aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
Diffstat (limited to 'home')
-rw-r--r--home/nipsy/common/optional/desktops/gtk.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/home/nipsy/common/optional/desktops/gtk.nix b/home/nipsy/common/optional/desktops/gtk.nix
index f59c98f..1c8ad3d 100644
--- a/home/nipsy/common/optional/desktops/gtk.nix
+++ b/home/nipsy/common/optional/desktops/gtk.nix
@@ -1,3 +1,4 @@
+{ pkgs, ... }:
{
dconf.settings."org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
@@ -5,7 +6,15 @@
gtk = {
enable = true;
- iconTheme.name = "Adwaita";
- theme.name = "Adwaita-dark";
+
+ iconTheme = {
+ name = "Adwaita";
+ package = pkgs.adwaita-icon-theme;
+ };
+
+ theme = {
+ name = "Adwaita-dark";
+ package = pkgs.gnome-themes-extra;
+ };
};
}