12 lines
238 B
Nix
12 lines
238 B
Nix
{ repoLocalPath, ... }:
|
|
{
|
|
home.username = "root";
|
|
home.homeDirectory = "/root";
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
signing.format = "openpgp";
|
|
settings.safe.directory = repoLocalPath;
|
|
};
|
|
}
|