[thunderbird] Sign mail with YubiKey
This commit is contained in:
parent
ff9de17d04
commit
6f5815b392
2 changed files with 19 additions and 8 deletions
|
@ -6,12 +6,14 @@ in {
|
|||
options.sisyphus.hardware.yubikey.enable = lib.mkEnableOption "YubiKey support";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
# Enable smart card reading
|
||||
services.pcscd.enable = true;
|
||||
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
pinentryFlavor = "curses";
|
||||
# TODO Necessary?
|
||||
# enableSSHSupport = true;
|
||||
# pinentryFlavor = "curses";
|
||||
};
|
||||
|
||||
# Enable smart card reading
|
||||
services.pcscd.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -70,6 +70,10 @@ in {
|
|||
"mail.server.server_${id}.authMethod" = 10;
|
||||
"mail.smtpserver.smtp_${id}.authMethod" = 10;
|
||||
"mail.identity.id_${id}.htmlSigText" = signatures.UGent;
|
||||
|
||||
# Allow PGP
|
||||
"mail.identity.id_${id}.openpgp_key_id" = "9B11F5243089DB5B"; # Your 'master' key
|
||||
"mail.identity.id_${id}.attachPgpKey" = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
@ -117,10 +121,15 @@ in {
|
|||
profiles.tdpeuter = {
|
||||
isDefault = true;
|
||||
settings = {
|
||||
# View
|
||||
"mailnews.default_sort_order" = 2; # Sort descending
|
||||
"mailnews.mark_message_read.delay" = true;
|
||||
"mailnews.start_page.enabled" = false;
|
||||
"mail.pane_config.dynamic" = 2; # Vertical view
|
||||
|
||||
# Encryption
|
||||
"mail.openpgp.allow_external_gnupg" = true; # Enable YubiKey GPG signing
|
||||
"mail.e2ee.auto_enable" = true; # Automatically enable encryption when possible.
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue