updating some bits

This commit is contained in:
Chris Cochrun 2023-03-23 13:09:22 -05:00
parent 7c3bce4779
commit bef2f4ab4a
2 changed files with 37 additions and 35 deletions

View file

@ -4,7 +4,7 @@ with lib;
{
services.emacs = {
enable = true;
package = with pkgs; ((emacsPackagesFor emacsGit).emacsWithPackages
package = with pkgs; ((emacsPackagesFor emacsPgtk).emacsWithPackages
(epkgs: with epkgs; [
vterm
magit

View file

@ -22,40 +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;
# 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;
# 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;