chore(git): Update config
This commit is contained in:
parent
fe090a95bc
commit
78a3247fb1
1 changed files with 8 additions and 3 deletions
|
|
@ -50,9 +50,14 @@
|
||||||
config = lib.optionalAttrs (options ? programs.git && options ? home.file) {
|
config = lib.optionalAttrs (options ? programs.git && options ? home.file) {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = config.mods.git.username;
|
settings =
|
||||||
userEmail = config.mods.git.email;
|
{
|
||||||
extraConfig = config.mods.git.additionalConfig;
|
user = {
|
||||||
|
name = config.mods.git.username;
|
||||||
|
inherit (config.mods.git) email;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
// config.mods.git.additionalConfig;
|
||||||
};
|
};
|
||||||
home.file.".ssh/config".text = config.mods.git.sshConfig;
|
home.file.".ssh/config".text = config.mods.git.sshConfig;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue