nixos_dots/modules/home-manager/terminal/git.nix
2025-01-02 22:50:26 +03:00

24 lines
No EOL
389 B
Nix

{
programs.git = { # https://nixos.wiki/wiki/Git
enable = true;
# lfs.enable = true; # https://git-lfs.com/
userName = "urec56";
userEmail = "mail@urec56.ru";
#qoutePath = false;
# aliases = {
# pu = "push";
# co = "checkout";
# cm = "commit";
# s = "status";
# };
};
programs.gitui = { # Terminal UI
enable = true;
};
}