updating some bits
This commit is contained in:
parent
7c3bce4779
commit
bef2f4ab4a
|
@ -4,7 +4,7 @@ with lib;
|
||||||
{
|
{
|
||||||
services.emacs = {
|
services.emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = with pkgs; ((emacsPackagesFor emacsGit).emacsWithPackages
|
package = with pkgs; ((emacsPackagesFor emacsPgtk).emacsWithPackages
|
||||||
(epkgs: with epkgs; [
|
(epkgs: with epkgs; [
|
||||||
vterm
|
vterm
|
||||||
magit
|
magit
|
||||||
|
|
|
@ -22,40 +22,42 @@
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
# accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
# personal = {
|
personal = {
|
||||||
# address = "chris@cochrun.xyz";
|
address = "chris@cochrun.xyz";
|
||||||
# mbsync.enable = true;
|
mbsync.enable = true;
|
||||||
# create = "maildir";
|
create = "maildir";
|
||||||
# mu.enable = true;
|
mu.enable = true;
|
||||||
# imap = {
|
flavor = "plain";
|
||||||
# host = "mail.cochrun.xyz";
|
imap = {
|
||||||
# port = 993;
|
host = "mail.cochrun.xyz";
|
||||||
# tls.enable = true;
|
port = 993;
|
||||||
# };
|
tls.enable = true;
|
||||||
# smtp = {
|
};
|
||||||
# host = "mail.cochrun.xyz";
|
smtp = {
|
||||||
# port = 25;
|
host = "mail.cochrun.xyz";
|
||||||
# tls.enable = true;
|
port = 25;
|
||||||
# };
|
tls.enable = true;
|
||||||
# };
|
};
|
||||||
# work = {
|
};
|
||||||
# address = "chris@tfcconnection.org";
|
work = {
|
||||||
# mbsync.enable = true;
|
address = "chris@tfcconnection.org";
|
||||||
# create = "maildir";
|
mbsync.enable = true;
|
||||||
# mu.enable = true;
|
create = "maildir";
|
||||||
# imap = {
|
mu.enable = true;
|
||||||
# host = "outlook.office365.com";
|
flavor = "outlook.office365.com";
|
||||||
# port = 993;
|
imap = {
|
||||||
# tls.enable = true;
|
host = "outlook.office365.com";
|
||||||
# };
|
port = 993;
|
||||||
# smtp = {
|
tls.enable = true;
|
||||||
# host = "mail.cochrun.xyz";
|
};
|
||||||
# port = 25;
|
smtp = {
|
||||||
# tls.enable = true;
|
host = "mail.cochrun.xyz";
|
||||||
# };
|
port = 25;
|
||||||
# };
|
tls.enable = true;
|
||||||
# };
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue