From ce0a7be00b7dea0534ec25593bdb166e8e609bb1 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Thu, 13 Oct 2022 17:46:18 -0500 Subject: [PATCH] workstation | enable msmtp --- workstation/configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/workstation/configuration.nix b/workstation/configuration.nix index ddca79b..2508609 100644 --- a/workstation/configuration.nix +++ b/workstation/configuration.nix @@ -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"; + }; + }; + }; }