From 230b53fb812ced015d4f9a5062c68ab4d19f4082 Mon Sep 17 00:00:00 2001 From: aristote Date: Mon, 4 Sep 2023 12:03:58 +0200 Subject: home: email: add university email --- home/default.nix | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/home/default.nix b/home/default.nix index 79ca26f..db5b703 100644 --- a/home/default.nix +++ b/home/default.nix @@ -12,7 +12,27 @@ }; }; - accounts.email.accounts.work.primary = true; + accounts.email.accounts = { + work.primary = true; + university = { + address = "quentin.aristote@etu.u-paris.fr"; + userName = "quentin.aristote@etu.u-paris.fr"; + realName = "Quentin Aristote"; + imap = { + host = "outlook.office365.com"; + port = 993; + }; + smtp = { + host = "smtp.office365.com"; + port = 587; + tls.useStartTls = true; + }; + thunderbird = { + enable = true; + profiles = [ "default" ]; + }; + }; + }; home.file.".spacemacs.d/init.el".source = ./spacemacs.el; -- cgit v1.2.3