nixos_config/home/users/root/default.nix
2026-03-10 21:50:51 +01:00

11 lines
209 B
Nix

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