27 lines
643 B
Nix
27 lines
643 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.git = {
|
|
enable = lib.mkEnableOption "Enables git";
|
|
username = lib.mkOption { default = config.home.username; };
|
|
email = lib.mkOption {
|
|
default = "git@" + config.home.username + ".com";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.git.enable {
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = config.git.username;
|
|
email = config.git.email;
|
|
signingkey = "${config.home.homeDirectory}/.ssh/id_ed25519.pub";
|
|
};
|
|
gpg.format = "ssh";
|
|
commit.gpgSign = "true";
|
|
tag.gpgSign = "true";
|
|
};
|
|
};
|
|
};
|
|
}
|