nixos_config/home/users/root/default.nix

12 lines
209 B
Nix
Raw Normal View History

2026-03-10 21:50:51 +01:00
{ repoLocalPath, ... }:
{
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "24.05";
programs.git = {
enable = true;
extraConfig.safe.directory = repoLocalPath;
};
}