diff options
author | Soispha <soispha@vhack.eu> | 2023-04-15 11:21:59 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:30:37 +0200 |
commit | 38095f465b5a11f62c71d4127180d9b9228e91b3 (patch) | |
tree | cb14b9eaa77e536bca097bbc7f4374ae37a4b14e /home-manager | |
parent | Docs(todo): Update (diff) | |
download | nixos-config-38095f465b5a11f62c71d4127180d9b9228e91b3.tar.gz nixos-config-38095f465b5a11f62c71d4127180d9b9228e91b3.zip |
Fix(hm/conf/mail): Use correct smtp & imap domains
Diffstat (limited to 'home-manager')
-rw-r--r-- | home-manager/config/mail/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home-manager/config/mail/default.nix b/home-manager/config/mail/default.nix index f72de12e..5d7816c9 100644 --- a/home-manager/config/mail/default.nix +++ b/home-manager/config/mail/default.nix @@ -37,11 +37,11 @@ }; }; smtp = { - host = "smtp.vhack.eu"; + host = "server1.vhack.eu"; port = 465; }; imap = { - host = "imap.vhack.eu"; + host = "server1.vhack.eu"; port = 993; }; jmap = { |