From 80f6769ebc1ad2d60926b70a821ae651c5816b67 Mon Sep 17 00:00:00 2001 From: Gabriel Gonzalez Date: Fri, 29 Jan 2021 01:22:49 -0800 Subject: [PATCH] Don't `createHome` for the `hydra` user (#110722) Co-authored-by: Cole Helbling --- nixos/modules/services/continuous-integration/hydra/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/continuous-integration/hydra/default.nix b/nixos/modules/services/continuous-integration/hydra/default.nix index 252ca17006d..887a0cbf9a7 100644 --- a/nixos/modules/services/continuous-integration/hydra/default.nix +++ b/nixos/modules/services/continuous-integration/hydra/default.nix @@ -231,7 +231,7 @@ in users.users.hydra = { description = "Hydra"; group = "hydra"; - createHome = true; + # We don't enable `createHome` here because the creation of the home directory is handled by the hydra-init service below. home = baseDir; useDefaultShell = true; uid = config.ids.uids.hydra;