summary refs log tree commit diff
diff options
context:
space:
mode:
authorGabriel Gonzalez <Gabriel439@gmail.com>2021-01-29 01:22:49 -0800
committerGitHub <noreply@github.com>2021-01-29 09:22:49 +0000
commit80f6769ebc1ad2d60926b70a821ae651c5816b67 (patch)
treed70e4970608078b427d76dea43c106dc8d2c0e82
parent7944650bb7c332010c3c6de05e983c27d4961034 (diff)
downloadnixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar.gz
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar.bz2
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar.lz
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar.xz
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.tar.zst
nixpkgs-80f6769ebc1ad2d60926b70a821ae651c5816b67.zip
Don't `createHome` for the `hydra` user (#110722)
Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
-rw-r--r--nixos/modules/services/continuous-integration/hydra/default.nix2
1 files changed, 1 insertions, 1 deletions
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;