Update configuration.nix

This commit is contained in:
Aaron Honeycutt 2023-11-08 15:15:01 +00:00
parent b92eef7b78
commit 1d8fd41d26

View file

@ -76,6 +76,26 @@
};
};
programs.git = {
lfs.enable = true;
config = {
color = {
ui = "auto";
};
color.status = {
added = "green bold";
changed = "yellow bold";
untracked = "red bold";
};
push = {
autoSetupRemote = "true";
};
init = {
defaultBranch = "main";
};
};
};
# Allow Unfree
nixpkgs.config.allowUnfree = true;