my NixOS and nix-darwin config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

.

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