bagel-container: provision a user with Nix store perms for remote builds

This commit is contained in:
Pierre Bourdon 2024-06-24 20:54:42 +02:00
parent edf11d7650
commit 97894bc446
Signed by: delroth
GPG key ID: 6FB80DCD84DA0F1C

View file

@ -30,4 +30,17 @@
networkConfig.Address = [ "172.16.100.1/24" ];
networkConfig.IPMasquerade = true;
};
# Configure a local Nix builder account, since getting sandboxing and KVM
# working inside the container will be tricky.
users.users.bagel-builder = {
isSystemUser = true;
group = "nogroup";
home = "/var/empty";
shell = "/bin/sh";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAvUT9YBig9LQPHgypIBHQuC32XqDKxlFZ2CfgDi0ZKx"
];
};
nix.settings.trusted-users = [ "bagel-builder" ];
}