feat: change git from a package to a program, and declare git configuration in home/pc/common/programs/git.nix

This commit is contained in:
2025-12-08 02:25:07 -05:00
parent 6a6f2fc67f
commit 50db8aec2c
3 changed files with 12 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
programs.git = {
enable = true;
settings = {
user.email = "autumn-the-kitty-cat@noreply.gitea.thekittycat.ca";
user.name = "autumn-the-kitty-cat";
};
};
}