From 628ebbcbffa78656d881927bef2c6b8adc2fed4e Mon Sep 17 00:00:00 2001 From: xezo360hye Date: Tue, 13 May 2025 23:58:26 +0300 Subject: [PATCH] feat(home): add Adwaita GTK icon theme to fix missing icons in apps like inkscape --- home/common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/home/common.nix b/home/common.nix index f8848d7..5bdc465 100644 --- a/home/common.nix +++ b/home/common.nix @@ -41,6 +41,13 @@ }; }; + gtk = { + enable = true; + iconTheme = { + package = pkgs.adwaita-icon-theme; + name = "Adwaita"; + }; + }; nixpkgs.config.allowUnfree = true;