Configure Git
This commit is contained in:
parent
bac57f1493
commit
616d1672ae
2 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,12 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
flake.modules.homeManager.base {
|
flake.modules.homeManager.base = {
|
||||||
programs.git.enable = true;
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
userEmail = config.flake.meta.owner.email;
|
||||||
|
userName = config.flake.meta.owner.name;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
{
|
{
|
||||||
flake = {
|
flake = {
|
||||||
meta.owner = {
|
meta.owner = {
|
||||||
|
email = "oliver@oliverdavies.uk";
|
||||||
|
name = "Oliver Davies";
|
||||||
username = "opdavies";
|
username = "opdavies";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue