From 35a8ad6354c27a56883b12f604cd223553a06ceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 4 Nov 2023 08:43:36 +0100 Subject: [PATCH] buildbot: switch to extra-allowed-users --- nix/worker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/worker.nix b/nix/worker.nix index 6b614bc..a087edf 100644 --- a/nix/worker.nix +++ b/nix/worker.nix @@ -31,7 +31,7 @@ in }; }; config = lib.mkIf cfg.enable { - nix.settings.allowed-users = [ "buildbot-worker" ]; + nix.settings.extra-allowed-users = [ "buildbot-worker" ]; users.users.buildbot-worker = { description = "Buildbot Worker User."; isSystemUser = true;