From 3a4b2fa4c7701eed60fc2c517a7144c9af09928b Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 28 Sep 2023 07:18:33 -0500 Subject: [PATCH] workstation | re-enable msmtp --- workstation/default.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/workstation/default.nix b/workstation/default.nix index 22e4856..01fd723 100644 --- a/workstation/default.nix +++ b/workstation/default.nix @@ -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";