mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 03:09:47 +01:00
gpg: add dirmngrSettings and gpgsmSettings options
This commit is contained in:
parent
1743615b61
commit
81921a4950
1 changed files with 57 additions and 0 deletions
|
@ -18,6 +18,16 @@ let
|
||||||
listsAsDuplicateKeys = true;
|
listsAsDuplicateKeys = true;
|
||||||
} cfg.scdaemonSettings;
|
} cfg.scdaemonSettings;
|
||||||
|
|
||||||
|
dirmngrCfgText = generators.toKeyValue {
|
||||||
|
inherit mkKeyValue;
|
||||||
|
listsAsDuplicateKeys = true;
|
||||||
|
} cfg.dirmngrSettings;
|
||||||
|
|
||||||
|
gpgsmCfgText = generators.toKeyValue {
|
||||||
|
inherit mkKeyValue;
|
||||||
|
listsAsDuplicateKeys = true;
|
||||||
|
} cfg.gpgsmSettings;
|
||||||
|
|
||||||
primitiveType = types.oneOf [ types.str types.bool ];
|
primitiveType = types.oneOf [ types.str types.bool ];
|
||||||
|
|
||||||
publicKeyOpts = { config, ... }: {
|
publicKeyOpts = { config, ... }: {
|
||||||
|
@ -187,6 +197,41 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dirmngrSettings = mkOption {
|
||||||
|
type =
|
||||||
|
types.attrsOf (types.either primitiveType (types.listOf types.str));
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
allow-version-check = true;
|
||||||
|
keyserver = "ldaps://ldap.example.com";
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Dirmngr configuration options. Available options are described
|
||||||
|
in
|
||||||
|
[
|
||||||
|
{manpage}`dirmngr(1)`
|
||||||
|
](https://www.gnupg.org/documentation/manuals/gnupg/Dirmngr-Options.html)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
gpgsmSettings = mkOption {
|
||||||
|
type =
|
||||||
|
types.attrsOf (types.either primitiveType (types.listOf types.str));
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
with-key-data = true;
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
GPGSM configuration options. Available options are described
|
||||||
|
in
|
||||||
|
[
|
||||||
|
{manpage}`gpgsm(1)`
|
||||||
|
](https://www.gnupg.org/documentation/manuals/gnupg/GPGSM-Options.html)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
homedir = mkOption {
|
homedir = mkOption {
|
||||||
type = types.path;
|
type = types.path;
|
||||||
example = literalExpression ''"''${config.xdg.dataHome}/gnupg"'';
|
example = literalExpression ''"''${config.xdg.dataHome}/gnupg"'';
|
||||||
|
@ -266,6 +311,14 @@ in {
|
||||||
# no defaults for scdaemon
|
# no defaults for scdaemon
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.gpg.dirmngrSettings = {
|
||||||
|
# no defaults for dirmngr
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.gpg.gpgsmSettings = {
|
||||||
|
# no defaults for gpgsm
|
||||||
|
};
|
||||||
|
|
||||||
home.packages = [ cfg.package ];
|
home.packages = [ cfg.package ];
|
||||||
home.sessionVariables = { GNUPGHOME = cfg.homedir; };
|
home.sessionVariables = { GNUPGHOME = cfg.homedir; };
|
||||||
|
|
||||||
|
@ -273,6 +326,10 @@ in {
|
||||||
|
|
||||||
home.file."${cfg.homedir}/scdaemon.conf".text = scdaemonCfgText;
|
home.file."${cfg.homedir}/scdaemon.conf".text = scdaemonCfgText;
|
||||||
|
|
||||||
|
home.file."${cfg.homedir}/dirmngr.conf".text = dirmngrCfgText;
|
||||||
|
|
||||||
|
home.file."${cfg.homedir}/gpgsm.conf".text = gpgsmCfgText;
|
||||||
|
|
||||||
# Link keyring if keys are not mutable
|
# Link keyring if keys are not mutable
|
||||||
home.file."${cfg.homedir}/pubring.kbx" =
|
home.file."${cfg.homedir}/pubring.kbx" =
|
||||||
mkIf (!cfg.mutableKeys && cfg.publicKeys != [ ]) {
|
mkIf (!cfg.mutableKeys && cfg.publicKeys != [ ]) {
|
||||||
|
|
Loading…
Reference in a new issue