Migrate gitconfig to nix

This commit is contained in:
Spotlight 2023-05-04 23:33:12 -05:00
parent b970a31df0
commit 18295ba895
Signed by: spotlight
GPG key ID: 874AA355B3209BDC

View file

@ -15,7 +15,6 @@
"/home/spotlight";
home.packages = with pkgs; [
dogdns
go
htop
mtr
@ -23,6 +22,23 @@
tmux
];
# Git
programs.git = {
enable = true;
lfs.enable = true;
userName = "Spotlight";
userEmail = "spotlight@joscomputing.space";
signing = {
key = "6EF6CBB6420B81DA3CCACFEA874AA355B3209BDC";
signByDefault = true;
};
extraConfig = {
color.ui = "auto";
pull.rebase = true;
init.defaultBranch = "main";
};
};
# Very opinionated :)
programs.zsh = {
enable = true;