From a81110c5008b3ce00dfedcdb4848a02875afb187 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Sun, 15 Sep 2024 18:56:08 +0100 Subject: [PATCH] Persist the whole fish state dir to avoid cross-device renames. --- home/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/default.nix b/home/default.nix index e7402ee..dd5c0ed 100644 --- a/home/default.nix +++ b/home/default.nix @@ -17,10 +17,11 @@ persistence."/persist/home/ppetru" = { directories = [ + ".local/share/fish" ".ssh" "projects" ]; - files = [ ".local/share/fish/fish_history" ]; + files = [ ]; allowOther = true; }; };