configure git

This commit is contained in:
Sean Buckley 2021-11-09 11:17:19 -05:00
parent 1704ca62fa
commit ed3d8bc913

View file

@ -12,7 +12,6 @@
entr entr
file file
gcc gcc
git
htop htop
iftop iftop
inetutils inetutils
@ -72,6 +71,14 @@
environment.etc.nixpkgs.source = pkgs.path; environment.etc.nixpkgs.source = pkgs.path;
nix.nixPath = [ "nixpkgs=/etc/nixpkgs" ]; nix.nixPath = [ "nixpkgs=/etc/nixpkgs" ];
programs.git = {
enable = true;
config = {
pull.ff = "only";
init.defaultBranch = "main";
};
};
programs.tmux = { programs.tmux = {
enable = true; enable = true;
terminal = "screen-256color"; terminal = "screen-256color";