From 7e663ee5f3d4ff29fb89215864a9a772c50cd390 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 20 Mar 2024 17:01:30 -0400 Subject: [PATCH] global/nix: make remotebuild a system user --- modules/global/nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index e1eef2a..0eca1f3 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -104,8 +104,8 @@ with lib; users.users.remotebuild = { description = "Unprivledged user for Nix remote builds"; - isNormalUser = true; - createHome = false; + isSystemUser = true; + shell = pkgs.bashInteractive; openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys; group = "remotebuild"; };