add wireguard & ca certificate

This commit is contained in:
DACHXY 2024-12-17 00:14:52 +08:00
parent 5b46a0b217
commit 58bd07ab17
4 changed files with 44 additions and 0 deletions

13
system/modules/git.nix Normal file
View file

@ -0,0 +1,13 @@
{ ... }:
{
programs.git.config = {
init = {
defaultBranch = "main";
};
pull.rebase = true;
user.name = "DACHXY";
user.email = "Danny10132024@gmail.com";
};
}