nix-conf/home/user/desktops.nix
2025-08-21 23:13:15 +08:00

12 lines
226 B
Nix

{
lib,
pkgs,
...
}:
{
home.activation = {
updateIconCache = lib.hm.dag.entryAfter [ "linkGeneration" ] ''
$DRY_RUN_CMD ${pkgs.gtk3}/bin/gtk-update-icon-cache -t -f ~/.local/share/icons/hicolor
'';
};
}