git: simplify submodule slightly
This commit is contained in:
parent
c3be4c4629
commit
fed112e497
|
@ -8,29 +8,27 @@ let
|
||||||
|
|
||||||
toINI = (import ../lib/generators.nix).toINI {};
|
toINI = (import ../lib/generators.nix).toINI {};
|
||||||
|
|
||||||
signModule = types.submodule (
|
signModule = types.submodule {
|
||||||
{ ... }: {
|
options = {
|
||||||
options = {
|
key = mkOption {
|
||||||
key = mkOption {
|
type = types.str;
|
||||||
type = types.str;
|
description = "The default GPG signing key fingerprint.";
|
||||||
description = "The default GPG signing key fingerprint.";
|
|
||||||
};
|
|
||||||
|
|
||||||
signByDefault = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
description = "Whether commits should be signed by default.";
|
|
||||||
};
|
|
||||||
|
|
||||||
gpgPath = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
default = "${pkgs.gnupg}/bin/gpg2";
|
|
||||||
defaultText = "\${pkgs.gnupg}/bin/gpg2";
|
|
||||||
description = "Path to GnuPG binary to use.";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
|
||||||
);
|
signByDefault = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether commits should be signed by default.";
|
||||||
|
};
|
||||||
|
|
||||||
|
gpgPath = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "${pkgs.gnupg}/bin/gpg2";
|
||||||
|
defaultText = "\${pkgs.gnupg}/bin/gpg2";
|
||||||
|
description = "Path to GnuPG binary to use.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue