Add NixOS config
This commit is contained in:
commit
6020d64797
43 changed files with 1372 additions and 0 deletions
17
home-manager/modules/git.nix
Normal file
17
home-manager/modules/git.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, ... }: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
user.name = "Zeph Levy";
|
||||
user.email = "171337931+ZephLevy@users.noreply.github.com";
|
||||
core = {
|
||||
editor = "hx";
|
||||
};
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
credential.helper = "/run/current-system/sw/bin/git-credential-libsecret";
|
||||
pull.rebase = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue