blob: 264590045c337143ac264f303ccefc2f73384536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ pkgs, config, ... }:
{
programs.git = {
enable = true;
userName = "Raghuram Subramani";
userEmail = "raghus2247@gmail.com";
extraConfig = {
"filter \"lfs\"" = {
clean = "${pkgs.git-lfs}/bin/git-lfs clean -- %f";
smudge = "${pkgs.git-lfs}/bin/git-lfs smudge --skip -- %f";
process = "${pkgs.git-lfs}/bin/git-lfs filter-process --skip";
required = true;
};
};
};
}
|