From bdf75c820fbd0ac17bf80a113877b215fe34739a Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 4 Feb 2024 06:33:42 -0500 Subject: [PATCH] global/nix: don't create home for remotebuild --- modules/global/nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index 621e91d..a6edaf7 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -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"; };