about summary refs log tree commit diff
path: root/nixos/modules/programs/git.nix
blob: 4e06b576f896f28691f0625fd0d391f706425fcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.programs.git;
in

{
  options = {
    programs.git = {
      enable = mkEnableOption "git";

      package = mkOption {
        type = types.package;
        default = pkgs.git;
        defaultText = "pkgs.git";
        example = literalExample "pkgs.gitFull";
        description = "The git package to use";
      };

      config = mkOption {
        type = types.attrs;
        default = { };
        example = {
          init.defaultBranch = "main";
          url."https://github.com/".insteadOf = [ "gh:" "github:" ];
        };
        description = ''
          Configuration to write to /etc/gitconfig. See the CONFIGURATION FILE
          section of git-config(1) for more information.
        '';
      };
    };
  };

  config = mkIf cfg.enable {
    environment.systemPackages = [ cfg.package ];
    environment.etc.gitconfig = mkIf (cfg.config != {}) {
      text = generators.toGitINI cfg.config;
    };
  };

  meta.maintainers = with maintainers; [ figsoda ];
}