blob: d123ca27e28f986dbdf581ff4a14bae37a53cb58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, lib, pkgs, ... }:
{
options.git.enable = lib.mkEnableOption "Enable and configure Git";
config = lib.mkIf config.git.enable {
programs.git = {
enable = true;
userName = "schererleander";
userEmail = "leander@schererleander.de";
extraConfig = {
alias.co = "checkout";
alias.br = "branch";
alias.st = "status";
};
};
};
}
|