mirror of
https://github.com/nix-community/home-manager
synced 2024-11-18 09:09:45 +01:00
accounts.emails: adding gpg/signature modules
(cherry picked from commit 9407b42f97
)
This commit is contained in:
parent
b17b760755
commit
26b16162b7
1 changed files with 62 additions and 0 deletions
|
@ -6,6 +6,52 @@ let
|
||||||
|
|
||||||
cfg = config.accounts.email;
|
cfg = config.accounts.email;
|
||||||
|
|
||||||
|
gpgModule = types.submodule {
|
||||||
|
options = {
|
||||||
|
key = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
description = ''
|
||||||
|
The key to use as listed in <command>gpg --list-keys</command>.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
signByDefault = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Sign messages by default.";
|
||||||
|
};
|
||||||
|
|
||||||
|
encryptByDefault = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Encrypt outgoing messages by default.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
signatureModule = types.submodule {
|
||||||
|
options = {
|
||||||
|
text = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "";
|
||||||
|
example = ''
|
||||||
|
--
|
||||||
|
Luke Skywalker
|
||||||
|
May the force be with you.
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Signature content.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
showSignature = mkOption {
|
||||||
|
type = types.enum [ "append" "attach" "none" ];
|
||||||
|
default = "none";
|
||||||
|
description = "Method to communicate the signature.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
tlsModule = types.submodule {
|
tlsModule = types.submodule {
|
||||||
options = {
|
options = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
|
@ -237,6 +283,22 @@ let
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
signature = mkOption {
|
||||||
|
type = signatureModule;
|
||||||
|
default = {};
|
||||||
|
description = ''
|
||||||
|
Signature configuration.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
gpg = mkOption {
|
||||||
|
type = types.nullOr gpgModule;
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
GPG configuration.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
smtp = mkOption {
|
smtp = mkOption {
|
||||||
type = types.nullOr smtpModule;
|
type = types.nullOr smtpModule;
|
||||||
default = null;
|
default = null;
|
||||||
|
|
Loading…
Reference in a new issue