Migrate gitconfig to nix
This commit is contained in:
parent
b970a31df0
commit
18295ba895
1 changed files with 17 additions and 1 deletions
|
@ -15,7 +15,6 @@
|
||||||
"/home/spotlight";
|
"/home/spotlight";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
dogdns
|
|
||||||
go
|
go
|
||||||
htop
|
htop
|
||||||
mtr
|
mtr
|
||||||
|
@ -23,6 +22,23 @@
|
||||||
tmux
|
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 :)
|
# Very opinionated :)
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue