-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit.nix
63 lines (61 loc) · 1.78 KB
/
git.nix
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ config, lib, pkgs, ... }:
let
cfg = config.cookie.git;
mail-util = pkgs.callPackage ./services/mailserver/util.nix { };
in with lib; {
options.cookie.git = {
enable = mkEnableOption "Enables and configures git";
name = mkOption rec {
type = types.str;
default = "ckie";
description = "Username to use with git";
example = default;
};
email = mkOption rec {
type = types.str;
default = (builtins.head
(mail-util.process (fileContents ../secrets/email-salt) [ "git" ]));
description = "Email to use with git";
example = default;
};
signingKey = mkOption rec {
type = types.str;
default = "13E79449C0525215";
description = "GPG signing key to use with git";
example = default;
};
};
config = mkIf cfg.enable {
home-manager.users.ckie = { ... }: {
programs.git = {
enable = true;
package = pkgs.gitFull;
lfs.enable = true;
signing = {
signByDefault = true;
key = cfg.signingKey;
};
userEmail = cfg.email;
userName = cfg.name;
extraConfig = {
core.pager = "${pkgs.delta}/bin/delta";
interactive.diffFilter = "${pkgs.delta}/bin/delta --color-only";
delta = {
navigate = true;
dark = true;
};
pull = {
rebase = true;
# ff = "only";
};
rebase.autoStash = true;
init.defaultBranch = "main";
sendemail.confirm = "auto";
# Rewrite unencrypted git://github.com URLs to the encrypted version which isn't deprecated
${''url "[email protected]:"''} = { insteadOf = "git://github.com/"; };
};
};
};
programs.gnupg.agent.enable = true;
};
}