global/nix: don't create home for remotebuild

This commit is contained in:
Infinidoge 2024-02-04 06:33:42 -05:00
parent fca49effd3
commit bdf75c820f
Signed by: Infinidoge
SSH key fingerprint: SHA256:oAMyvotlNFraMmZmr+p6AxnNfW/GioTs1pOn3V4tQ7A

View file

@ -104,6 +104,7 @@ with lib;
users.users.remotebuild = {
description = "Unprivledged user for Nix remote builds";
isNormalUser = true;
createHome = false;
openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys;
group = "remotebuild";
};