git.nix 319 B

12345678910111213141516
  1. {
  2. programs.git = {
  3. enable = true;
  4. diff-so-fancy.enable = true;
  5. includes = [{
  6. contents = {
  7. advice.addIgnoredFile = false;
  8. commit.gpgSign = false;
  9. init.defaultBranch = "master";
  10. pull.rebase = false;
  11. status.showUntrackedFiles = "normal";
  12. };
  13. }];
  14. };
  15. }