Files
rice-flakes/modules/home/git.nix
2025-07-09 11:46:32 -05:00

17 lines
198 B
Nix

{
config,
username,
...
}:
{
hj.rum.programs.git = {
enable = true;
settings = {
user = {
name = "poslop";
email = "poslop@archfox.org";
};
};
};
}