first commit

This commit is contained in:
benstrb 2026-01-03 12:48:28 +01:00
commit 780ddcda1c
37 changed files with 981 additions and 0 deletions

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

@ -0,0 +1,13 @@
{pkgs, ...}: {
programs.git = {
enable = true;
package = pkgs.gitFull;
settings = {
user.name = "benstrb";
user.email = "ben.stribrny@gmail.com";
init.defaultBranch = "main";
github.user = "benstrb";
credential.helper = "store";
};
};
}