workstation | enable msmtp

This commit is contained in:
Don Harper 2022-10-13 17:46:18 -05:00
parent d93d933d05
commit ce0a7be00b

View file

@ -93,6 +93,7 @@
gitFull
gnupg
home-manager
keyutils
mosh
pulseaudio
python310
@ -185,5 +186,19 @@
system.stateVersion = "22.05"; # Did you read the comment?
nixpkgs.config.firefox.enableGnomeExtenions = true;
services.gnome.chrome-gnome-shell.enable = true;
## -> ## programs.qutebrowser.enableWideVine = true;
programs.msmtp = {
enable = true;
accounts = {
default = {
auth = true;
tls = true;
from = "duck@duckland.org";
host = "smtp.gmail.com";
user = "duckunix@gmail.com";
passwordeval = "cat /home/don/.smtp_password.txt";
};
};
};
}