13 lines
217 B
Nix
13 lines
217 B
Nix
{
|
|
imports = [ ../shared/remote-builder.nix ];
|
|
|
|
users.knownUsers = [ "nix" ];
|
|
|
|
users.users.nix = {
|
|
name = "nix";
|
|
uid = 8765;
|
|
home = "/Users/nix";
|
|
createHome = true;
|
|
shell = "/bin/zsh";
|
|
};
|
|
}
|