16 lines
343 B
Nix
16 lines
343 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
user = {
|
|
name = "Katharina Heidenreich";
|
|
email = "katharina.heidenreich02@gmail.com";
|
|
};
|
|
init.defaultBranch = "main";
|
|
pull.rebase = false;
|
|
core.editor = "nano";
|
|
safe.directory = ["/etc/nixos"];
|
|
};
|
|
};
|
|
}
|