From b64cf408fb430167f4de6e46c97541c91604e55c Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 29 Aug 2023 06:13:24 +0000 Subject: [PATCH] chatty: persist all of ~/.purple --- hosts/common/programs/chatty.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hosts/common/programs/chatty.nix b/hosts/common/programs/chatty.nix index 1caceed0..f648d644 100644 --- a/hosts/common/programs/chatty.nix +++ b/hosts/common/programs/chatty.nix @@ -38,7 +38,9 @@ in suggestedPrograms = [ "gnome-keyring" ]; persist.private = [ ".local/share/chatty" # matrix avatars and files - ".purple/chatty" # not just XMPP; without this Chatty will regenerate its device-id every boot + # not just XMPP; without this Chatty will regenerate its device-id every boot. + # .purple/ contains XMPP *and* Matrix auth, logs, avatar cache, and a bit more + ".purple" ]; }; }