12 lines
209 B
Nix
12 lines
209 B
Nix
|
|
{ repoLocalPath, ... }:
|
||
|
|
{
|
||
|
|
home.username = "root";
|
||
|
|
home.homeDirectory = "/root";
|
||
|
|
home.stateVersion = "24.05";
|
||
|
|
|
||
|
|
programs.git = {
|
||
|
|
enable = true;
|
||
|
|
extraConfig.safe.directory = repoLocalPath;
|
||
|
|
};
|
||
|
|
}
|