summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--krebs/3modules/tv/default.nix2
-rw-r--r--krebs/4lib/types.nix13
2 files changed, 14 insertions, 1 deletions
diff --git a/krebs/3modules/tv/default.nix b/krebs/3modules/tv/default.nix
index dd1f0d28..262f508c 100644
--- a/krebs/3modules/tv/default.nix
+++ b/krebs/3modules/tv/default.nix
@@ -357,7 +357,7 @@ with config.krebs.lib;
};
tv = {
mail = "tv@nomic.retiolum";
- pgp.pubkey = ''
+ pgp.pubkeys.default = ''
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQINBFbJ/B0BEADZx8l5gRurzhEHcc3PbBepdZqDJQZ2cGHixi8VEk9iN25qJO5y
HB0q5sQRsh7oNCbzKp6qRhaG9kXmEda+Uu+qbHWxE32QcT76+W8npH73qthaFwC/
diff --git a/krebs/4lib/types.nix b/krebs/4lib/types.nix
index ed6ae9e4..11298444 100644
--- a/krebs/4lib/types.nix
+++ b/krebs/4lib/types.nix
@@ -165,6 +165,16 @@ types // rec {
type = username;
default = config._module.args.name;
};
+ pgp.pubkeys = mkOption {
+ type = attrsOf pgp-pubkey;
+ default = {};
+ description = ''
+ Set of user's PGP public keys.
+
+ Modules supporting PGP may use well-known key names to define option
+ defaults, e.g. using `getAttrDef well-known-name pubkeys`.
+ '';
+ };
pubkey = mkOption {
type = nullOr ssh-pubkey;
default = null;
@@ -180,6 +190,9 @@ types // rec {
addr = str;
addr4 = str;
addr6 = str;
+
+ pgp-pubkey = str;
+
ssh-pubkey = str;
ssh-privkey = submodule {
options = {