fix: disable msmtp when using mail server

This commit is contained in:
DACHXY 2025-05-05 13:39:33 +08:00
parent 1e77f204d0
commit 9f72ccc5b9

View file

@ -1,6 +1,6 @@
{
config,
pkgs,
lib,
settings,
...
}:
@ -59,4 +59,6 @@ in
vaultwarden: root
'';
};
programs.msmtp.enable = lib.mkForce false;
}