From 2af4b221a7173997457aa2b54a9084c3abdae333 Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Wed, 16 Jul 2025 22:53:59 +0800 Subject: [PATCH] chore: persistent cache & uv's env --- hosts/idols-ai/preservation.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/idols-ai/preservation.nix b/hosts/idols-ai/preservation.nix index ce9faf20..9252ce3c 100644 --- a/hosts/idols-ai/preservation.nix +++ b/hosts/idols-ai/preservation.nix @@ -198,6 +198,9 @@ in { # python pipx ".local/pipx" ".local/bin" + # python uv + ".local/share/uv" + ".cache/uv" # ====================================== # Security @@ -257,6 +260,7 @@ in { # ====================================== ".mozilla" ".config/google-chrome" + ".cache/google-chrome" # ====================================== # CLI data @@ -265,6 +269,7 @@ in { ".local/share/zoxide" ".local/share/direnv" ".local/share/k9s" + ".cache/tealdeer" # tldr # ====================================== # Containers @@ -333,6 +338,7 @@ in { }; in { "/home/${username}/.config".d = permission; + "/home/${username}/.cache".d = permission; "/home/${username}/.local".d = permission; "/home/${username}/.local/share".d = permission; "/home/${username}/.local/state".d = permission;