nixos_config/home/users/root/default.nix

13 lines
238 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;
signing.format = "openpgp";
2026-03-19 19:30:36 +01:00
settings.safe.directory = repoLocalPath;
2026-03-10 21:50:51 +01:00
};
}