nixos_config/home/users/root/default.nix
2026-04-03 15:31:09 +02:00

11 lines
206 B
Nix

{ repoLocalPath, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "24.05";
programs.git = {
enable = true;
settings.safe.directory = repoLocalPath;
};
}