mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
117 lines
2.6 KiB
Nix
117 lines
2.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.git;
|
|
|
|
signModule = types.submodule {
|
|
options = {
|
|
key = mkOption {
|
|
type = types.str;
|
|
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.";
|
|
};
|
|
};
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
programs.git = {
|
|
enable = mkEnableOption "Git";
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.git;
|
|
defaultText = "pkgs.git";
|
|
description = "Git package to install.";
|
|
};
|
|
|
|
userName = mkOption {
|
|
type = types.str;
|
|
description = "Default user name to use.";
|
|
};
|
|
|
|
userEmail = mkOption {
|
|
type = types.str;
|
|
description = "Default user email to use.";
|
|
};
|
|
|
|
aliases = mkOption {
|
|
type = types.attrs;
|
|
default = {};
|
|
description = "Git aliases to define.";
|
|
};
|
|
|
|
signing = mkOption {
|
|
type = types.nullOr signModule;
|
|
default = null;
|
|
description = "Options related to signing commits using GnuPG.";
|
|
};
|
|
|
|
extraConfig = mkOption {
|
|
type = types.either types.attrs types.lines;
|
|
default = {};
|
|
description = "Additional configuration to add.";
|
|
};
|
|
|
|
iniContent = mkOption {
|
|
type = types.attrsOf types.attrs;
|
|
internal = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable (
|
|
mkMerge [
|
|
{
|
|
home.packages = [ cfg.package ];
|
|
|
|
programs.git.iniContent.user = {
|
|
name = cfg.userName;
|
|
email = cfg.userEmail;
|
|
};
|
|
|
|
home.file.".gitconfig".text =
|
|
generators.toINI {} cfg.iniContent;
|
|
}
|
|
|
|
(mkIf (cfg.signing != null) {
|
|
programs.git.iniContent = {
|
|
user.signingKey = cfg.signing.key;
|
|
commit.gpgSign = cfg.signing.signByDefault;
|
|
gpg.program = cfg.signing.gpgPath;
|
|
};
|
|
})
|
|
|
|
(mkIf (cfg.aliases != {}) {
|
|
programs.git.iniContent.alias = cfg.aliases;
|
|
})
|
|
|
|
(mkIf (lib.isAttrs cfg.extraConfig) {
|
|
programs.git.iniContent = cfg.extraConfig;
|
|
})
|
|
|
|
(mkIf (lib.isString cfg.extraConfig) {
|
|
home.file.".gitconfig".text = cfg.extraConfig;
|
|
})
|
|
]
|
|
);
|
|
}
|