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