diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-01-19 11:03:22 -0800 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-01-19 11:03:22 -0800 |
| commit | 2c277add18ad47a39815497d9ad14e028a15527c (patch) | |
| tree | 16d7cfdfa25e79f3406ea5cabb3bdaa5cf32e594 | |
| parent | 00e7db6c37bc500872ad1a9d8f16190401173203 (diff) | |
| download | nix-2c277add18ad47a39815497d9ad14e028a15527c.tar nix-2c277add18ad47a39815497d9ad14e028a15527c.tar.gz nix-2c277add18ad47a39815497d9ad14e028a15527c.tar.bz2 nix-2c277add18ad47a39815497d9ad14e028a15527c.tar.lz nix-2c277add18ad47a39815497d9ad14e028a15527c.tar.xz nix-2c277add18ad47a39815497d9ad14e028a15527c.tar.zst nix-2c277add18ad47a39815497d9ad14e028a15527c.zip | |
Redo HM GTK configuration
Diffstat (limited to '')
| -rw-r--r-- | home/nipsy/common/optional/desktops/gtk.nix | 13 |
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; + }; }; } |
