nixos/modules/options/gpg.nix

19 lines
312 B
Nix

{
lib,
...
}:
with lib;
{
options.modules.gpg = {
enable = mkEnableOption {
default = false;
description = "Enable gpg-agent";
};
signingKey = mkOption {
type = types.nullOr types.str;
default = null;
description = "The key ID to sign with for git";
};
};
}