niksos/homes/jacek/cli/git.nix

23 lines
459 B
Nix
Raw Normal View History

2023-07-13 12:49:20 +02:00
{
config,
pkgs,
...
}:
{
config = {
programs.git = {
enable = true;
userName = "jacekpoz";
userEmail = "jacekpoz@cock.li";
2023-07-30 01:13:00 +02:00
includes = [
{
contents = { core.editor = "${pkgs.neovim}/bin/nvim"; };
}
2023-08-01 14:21:45 +02:00
{
contents = { init.defaultBranch = "master"; };
}
2023-07-30 01:13:00 +02:00
];
2023-07-13 12:49:20 +02:00
};
};
}