feat: big refactor
This commit is contained in:
parent
2c09c21833
commit
ebedec9768
159 changed files with 1927 additions and 2222 deletions
21
modules/home-manager/git.nix
Normal file
21
modules/home-manager/git.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ nixosConfig, ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
signing = {
|
||||
signByDefault = true;
|
||||
key = nixosConfig.bchmnn.git.signing.key;
|
||||
};
|
||||
userEmail = "jacob.bachmann@posteo.de";
|
||||
userName = "Jacob Bachmann";
|
||||
extraConfig = {
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
core.editor = "nvim";
|
||||
pull.rebase = false;
|
||||
push.autoSetupRemote = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue