Files
rice-flakes/modules/core/git.nix
2026-01-30 23:34:47 -06:00

18 lines
273 B
Nix

{
hj.rum.programs.git = {
enable = true;
settings = {
user = {
name = "poslop";
email = "poslop@archfox.org";
};
core = {
editor = "nvim -f";
};
credential = {
helper = "store";
};
};
};
}