infra/modules/darwin/remote-builder.nix

14 lines
217 B
Nix
Raw Normal View History

2023-05-16 18:58:13 +10:00
{
2024-07-24 19:05:26 +10:00
imports = [ ../shared/remote-builder.nix ];
2023-05-16 18:58:13 +10:00
users.knownUsers = [ "nix" ];
users.users.nix = {
name = "nix";
uid = 8765;
home = "/Users/nix";
createHome = true;
shell = "/bin/zsh";
};
}