ffixing unnecessary packages

This commit is contained in:
Chris Cochrun 2023-03-23 15:09:15 -05:00
parent 30bbd49d76
commit f8ea51fb30
2 changed files with 49 additions and 49 deletions

View file

@ -22,42 +22,42 @@
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
accounts.email.accounts = {
personal = {
address = "chris@cochrun.xyz";
mbsync.enable = true;
create = "maildir";
mu.enable = true;
flavor = "plain";
imap = {
host = "mail.cochrun.xyz";
port = 993;
tls.enable = true;
};
smtp = {
host = "mail.cochrun.xyz";
port = 25;
tls.enable = true;
};
};
work = {
address = "chris@tfcconnection.org";
mbsync.enable = true;
create = "maildir";
mu.enable = true;
flavor = "outlook.office365.com";
imap = {
host = "outlook.office365.com";
port = 993;
tls.enable = true;
};
smtp = {
host = "mail.cochrun.xyz";
port = 25;
tls.enable = true;
};
};
};
# accounts.email.accounts = {
# personal = {
# address = "chris@cochrun.xyz";
# mbsync.enable = true;
# create = "maildir";
# mu.enable = true;
# flavor = "plain";
# imap = {
# host = "mail.cochrun.xyz";
# port = 993;
# tls.enable = true;
# };
# smtp = {
# host = "mail.cochrun.xyz";
# port = 25;
# tls.enable = true;
# };
# };
# work = {
# address = "chris@tfcconnection.org";
# mbsync.enable = true;
# create = "maildir";
# mu.enable = true;
# flavor = "outlook.office365.com";
# imap = {
# host = "outlook.office365.com";
# port = 993;
# tls.enable = true;
# };
# smtp = {
# host = "mail.cochrun.xyz";
# port = 25;
# tls.enable = true;
# };
# };
# };
programs.git = {
enable = true;