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
-1
View File
@@ -10,7 +10,6 @@
ffmpeg
fzf
gimp3-with-plugins
git
grim
killall
lazygit
+2 -1
View File
@@ -7,6 +7,7 @@
./carapace.nix
./fastfetch.nix
./foot.nix
./git.nix
./hyfetch.nix
./mako.nix
./ncspot.nix
@@ -18,7 +19,7 @@
./waybar.nix
./yazi.nix
./zathura.nix
./zoxide.nix
./zen.nix
./zoxide.nix
];
}
+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";
};
};
}