mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
12 lines
208 B
Nix
12 lines
208 B
Nix
{ host, ... }:
|
|
let
|
|
inherit (import ../../hosts/${host}/variables.nix) gitUsername gitEmail;
|
|
in
|
|
{
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "${gitUsername}";
|
|
userEmail = "${gitEmail}";
|
|
};
|
|
}
|