infra/modules/darwin/remote-builder.nix

16 lines
223 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";
};
}