From c21ae620a8f0a9612bcfa6b952e1f5da99d4d753 Mon Sep 17 00:00:00 2001 From: Nathan Reiner Date: Thu, 19 Sep 2024 11:46:13 +0200 Subject: setup llvm for compiler design --- common/home/accounts/default.nix | 2 +- common/home/accounts/email.nix | 62 +++++++++++++++++++++------------------- 2 files changed, 34 insertions(+), 30 deletions(-) (limited to 'common/home/accounts') diff --git a/common/home/accounts/default.nix b/common/home/accounts/default.nix index d5338dd..635ad9c 100644 --- a/common/home/accounts/default.nix +++ b/common/home/accounts/default.nix @@ -1,4 +1,4 @@ { ... }: { - email.accounts = import ./email.nix { }; + email = import ./email.nix { }; } diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix index da9be05..0c3de66 100644 --- a/common/home/accounts/email.nix +++ b/common/home/accounts/email.nix @@ -1,41 +1,45 @@ { ... }: { - uberspace = { - userName = "nathan@n8.uber.space"; - address = "nathan@nathanreiner.xyz"; - primary = true; - realName = "Nathan Reiner"; - passwordCommand = "pass mail/nathan@nathanreiner.xyz"; + maildirBasePath = ".local/share/mail"; - folders = { - drafts = "Drafts"; - inbox = "INBOX"; - sent = "Sent"; - trash = "Trash"; - }; + accounts = { + uberspace = { + userName = "nathan@n8.uber.space"; + address = "nathan@nathanreiner.xyz"; + primary = true; + realName = "Nathan Reiner"; + passwordCommand = "pass mail/nathan@nathanreiner.xyz"; - smtp = { - host = "menkent.uberspace.de"; - port = 465; - tls = { - enable = true; + folders = { + drafts = "Drafts"; + inbox = "INBOX"; + sent = "Sent"; + trash = "Trash"; }; - }; - imap = { - host = "menkent.uberspace.de"; - port = 993; - tls = { - enable = true; + smtp = { + host = "menkent.uberspace.de"; + port = 465; + tls = { + enable = true; + }; }; - }; - mbsync.enable = true; - msmtp.enable = true; + imap = { + host = "menkent.uberspace.de"; + port = 993; + tls = { + enable = true; + }; + }; + + mbsync.enable = true; + msmtp.enable = true; - neomutt = { - enable = true; - showDefaultMailbox = true; + neomutt = { + enable = true; + showDefaultMailbox = true; + }; }; }; } -- cgit v1.2.3-70-g09d2