From ee1a50dc53a9d3885fa03baa91194abb6bf0aacb Mon Sep 17 00:00:00 2001 From: traxys Date: Mon, 18 Aug 2025 10:59:28 +0200 Subject: [PATCH] thinkpad-nixos: Prevent local deletion --- hostconfig/thinkpad-nixos/hm.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/hostconfig/thinkpad-nixos/hm.nix b/hostconfig/thinkpad-nixos/hm.nix index 4730440..766a1f8 100644 --- a/hostconfig/thinkpad-nixos/hm.nix +++ b/hostconfig/thinkpad-nixos/hm.nix @@ -427,9 +427,14 @@ in enable = true; create = "maildir"; subFolders = "Verbatim"; - extraConfig.account = { - AuthMechs = "LOGIN"; - Timeout = 0; + extraConfig = { + account = { + AuthMechs = "LOGIN"; + Timeout = 0; + }; + channel = { + Sync = ["Pull" "New" "Upgrade"]; + }; }; }; passwordCommand = "echo foobar";