diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-17 00:52:17 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-17 00:52:17 +0200 |
commit | ec800c73945916eb28cf7de89949a4f4eef95c9a (patch) | |
tree | ff1b8d7bc94739cc432a6df27cf251aa89bbe9af | |
parent | b6d7635ce0d4821addf7463a7d7b01a2b18f1973 (diff) | |
download | nixos-configuration-ec800c73945916eb28cf7de89949a4f4eef95c9a.tar.gz nixos-configuration-ec800c73945916eb28cf7de89949a4f4eef95c9a.tar.bz2 nixos-configuration-ec800c73945916eb28cf7de89949a4f4eef95c9a.zip |
chore: change gtk icon theme
-rw-r--r-- | home-manager/stvnliu/gtk.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/home-manager/stvnliu/gtk.nix b/home-manager/stvnliu/gtk.nix index 39f0f80..9e38baa 100644 --- a/home-manager/stvnliu/gtk.nix +++ b/home-manager/stvnliu/gtk.nix @@ -6,8 +6,8 @@ gtk = { enable = true; iconTheme = { - package = pkgs.gruvbox-plus-icons; - name = "Gruvbox-Plus-Dark"; + package = pkgs.adwaita-icon-theme; + name = "Adwaita"; }; }; qt = { @@ -15,5 +15,4 @@ platformTheme.name = "gtk"; style = {name = "Fusion";}; }; - home.packages = with pkgs; [libsForQt5.breeze-qt5]; } |