Refactor
All checks were successful
/ check (push) Successful in 1m37s

This commit is contained in:
Oliver Davies 2025-07-24 23:43:49 +01:00
parent c77d7e4e55
commit 1b360709f8
2 changed files with 14 additions and 11 deletions

8
modules2/git/user.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, ... }:
{
flake.modules.homeManager.base.programs.git = {
userName = config.flake.meta.owner.name;
userEmail = config.flake.meta.owner.email;
};
}