workstation | msmtp is currently not building

This commit is contained in:
Don Harper 2023-09-26 07:43:19 -05:00
parent 4517646ea2
commit dc62151424

View file

@ -223,20 +223,20 @@ in
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
programs.msmtp = {
enable = true;
accounts = {
default = {
auth = true;
tls = true;
port = 587;
from = "duck@duckland.org";
host = "smtp.gmail.com";
user = "duckunix@gmail.com";
passwordeval = "cat /home/don/.smtp_password.txt";
};
};
};
#-# programs.msmtp = {
#-# enable = true;
#-# accounts = {
#-# default = {
#-# auth = true;
#-# tls = true;
#-# port = 587;
#-# from = "duck@duckland.org";
#-# host = "smtp.gmail.com";
#-# user = "duckunix@gmail.com";
#-# passwordeval = "cat /home/don/.smtp_password.txt";
#-# };
#-# };
#-# };
nix.gc = {
automatic = true;
options = "-d";