More dots
parent
61c2cc0006
commit
2626a55079
@ -1,3 +0,0 @@
|
||||
pinentry-program /Users/dustinswan/.nix-profile/bin/pinentry
|
||||
default-cache-ttl 86400
|
||||
max-cache-ttl 86400
|
@ -0,0 +1,16 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
home.packages = with pkgs; [ pinentry_mac ];
|
||||
|
||||
home.file.gpg-agent = {
|
||||
target = ".gnupg/gpg-agent.conf";
|
||||
text = ''
|
||||
pinentry-program ${builtins.getEnv "HOME"}/.nix-profile/bin/pinentry
|
||||
default-cache-ttl 86400
|
||||
max-cache-ttl 86400
|
||||
'';
|
||||
};
|
||||
|
||||
imports = [ ./home-common.nix ];
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
defaults
|
||||
protocol smtp
|
||||
logfile "~/.msmtp.log"
|
||||
|
||||
account FastMail
|
||||
host mail.messagingengine.com
|
||||
port 465
|
||||
protocol smtp
|
||||
from dustin@dustinswan.com
|
||||
user dustinswan@fastmail.com
|
||||
passwordeval "gpg --no-tty -q -d ~/.dustinswan@fastmail.com-password.gpg"
|
||||
auth on
|
||||
tls on
|
||||
tls_starttls off
|
||||
# tls_trust_file "/usr/local/etc/openssl/cert.pem"
|
||||
|
||||
account IOCOM
|
||||
host secure.emailsrvr.com
|
||||
protocol smtp
|
||||
auth on
|
||||
port 587
|
||||
from dswan@iocom.com
|
||||
tls on
|
||||
tls_starttls on
|
||||
# tls_trust_file "/usr/local/etc/openssl/cert.pem"
|
||||
user dswan@iocom.com
|
||||
passwordeval "gpg --no-tty -q -d ~/.iocom-password.gpg"
|
||||
|
||||
account default : FastMail
|
Loading…
Reference in New Issue