nix-files/hosts/common/programs/chatty.nix

15 lines
460 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
sane.programs.chatty = {
# packageUnwrapped = chattyNoOauth;
packageUnwrapped = pkgs.chatty-latest;
suggestedPrograms = [ "gnome-keyring" ];
persist.byStore.private = [
2023-08-02 11:36:49 +00:00
".local/share/chatty" # matrix avatars and files
2023-08-29 06:13:24 +00:00
# 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"
2023-08-02 11:36:49 +00:00
];
};
}