This commit is contained in:
Paul Lopez
2025-12-03 08:54:39 -06:00
commit d5205bb355
12 changed files with 792 additions and 0 deletions

18
nix/git.nix Normal file
View File

@@ -0,0 +1,18 @@
# ./modules/users/psljr/git.fish
# Configure git for user psljr
{ config, pkgs, ... }:
{
home-manager.users.psljr = { pkgs, ... }: {
programs.git = {
enable = true;
userName = "Paul Lopez";
userEmail = "psljr@protonmail.com";
extraConfig = {
init.defaultBranch = "main";
};
};
};
}