infra/modules/darwin/remote-builder.nix

21 lines
387 B
Nix
Raw Normal View History

2023-05-16 18:58:13 +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";
};
# add build user to group for ssh access
system.activationScripts.postActivation.text = ''
dseditgroup -o edit -a "nix" -t user com.apple.access_ssh
'';
2023-05-16 18:58:13 +10:00
}