mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:19:41 +00:00
19 lines
411 B
Nix
19 lines
411 B
Nix
|
{ 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.";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|