From 1128fbb94c2f869c013c7ad8854b89e49551a304 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 18 Jan 2025 23:32:01 +0000 Subject: [PATCH] t490: investigate using isync/mbsync Investigate using isync/mbsync to backup emails locally. https://isync.sourceforge.io For this, I've created a ~/.mbsyncrc file that contains my IMAP configuration to connect to my email account and allows me to run `mbsync oliverdavies.uk` to perform the backup. `programs.mbsync` exists in Home Manager, so I can use this if I decide to refactor this and have Home Manager create the configuration file. --- nix/home/opdavies/hosts/t490.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/home/opdavies/hosts/t490.nix b/nix/home/opdavies/hosts/t490.nix index 1a47292..524c451 100644 --- a/nix/home/opdavies/hosts/t490.nix +++ b/nix/home/opdavies/hosts/t490.nix @@ -27,4 +27,6 @@ zoom.enable = true; }; }; + + home.packages = with pkgs; [ isync ]; }