nixdots/options/home/git.nix

19 lines
411 B
Nix
Raw Normal View History

2024-04-04 18:16:56 +00:00
{ lib, ... }: with lib; let
in
{
options.myOptions.home-manager.git = {
signing = {
enabled = mkOption {
type = types.bool;
default = true;
description = "Should commits and tags be sgined by default?";
};
key = mkOption {
type = types.str;
default = "";
description = "The defaul GPG key fingerprint for signing.";
};
};
};
}