The Great Modularization

This commit is contained in:
wo2wz 2025-07-20 13:02:43 -04:00
parent e0b7d60a8d
commit eb279f1f65
34 changed files with 1356 additions and 1286 deletions

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

@ -0,0 +1,13 @@
{ config, ... }:
{
programs.git = {
enable = true;
userName = "wo2wz";
userEmail = "189177184+wo2wz@users.noreply.github.com";
extraConfig = {
init.defaultBranch = "main";
safe.directory = "/etc/nixos";
};
};
}