my NixOS and nix-darwin config
1{ pkgs, ... }:
2{
3 programs.git = {
4 enable = true;
5 settings = {
6
7 user = {
8 name = "suri312006";
9 email = "suri312006@gmail.com";
10 };
11
12 pull = {
13 rebase = false;
14 };
15
16 init = {
17 defaultBranch = "main";
18 };
19 };
20
21 lfs = {
22 enable = true;
23 };
24
25 };
26
27 home.packages = [ pkgs.lazygit ];
28}