mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
users/foo-dogsquared: update personal email config
This commit is contained in:
parent
7966b6fc71
commit
6a5489131a
@ -19,9 +19,23 @@
|
|||||||
foodogsquared at foodogsquared dot one
|
foodogsquared at foodogsquared dot one
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
passwordCommand = "gopass show work/websites/mailbox.org/foodogsquared@mailbox.org | head -n 1";
|
passwordCommand = "gopass show personal/websites/mailbox.org/foodogsquared@mailbox.org | head -n 1";
|
||||||
|
|
||||||
# GPG settings
|
# Set up the ingoing mails.
|
||||||
|
imap = {
|
||||||
|
host = "imap.mailbox.org";
|
||||||
|
port = 993;
|
||||||
|
tls.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Set up the outgoing mails.
|
||||||
|
smtp = {
|
||||||
|
host = "smtp.mailbox.org";
|
||||||
|
port = 465;
|
||||||
|
tls.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# GPG settings... wablamo.
|
||||||
gpg = {
|
gpg = {
|
||||||
key = "0xADE0C41DAB221FCC";
|
key = "0xADE0C41DAB221FCC";
|
||||||
encryptByDefault = false;
|
encryptByDefault = false;
|
||||||
@ -35,7 +49,7 @@
|
|||||||
let
|
let
|
||||||
identitySettings = attrs: lib.mapAttrs'
|
identitySettings = attrs: lib.mapAttrs'
|
||||||
(setting: value:
|
(setting: value:
|
||||||
lib.nameValuePair "mail.identity.id${id}.${setting}" value)
|
lib.nameValuePair "mail.identity.id_${id}.${setting}" value)
|
||||||
attrs;
|
attrs;
|
||||||
in
|
in
|
||||||
identitySettings {
|
identitySettings {
|
||||||
|
Loading…
Reference in New Issue
Block a user