19 lines
274 B
Nix
19 lines
274 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
user = {
|
|
name = "cubernetes";
|
|
email = "timo42@proton.me";
|
|
};
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
core = {
|
|
editor = "vim";
|
|
};
|
|
};
|
|
};
|
|
}
|