Skip to content

Commit ed8f7df

Browse files
authored
Merge pull request #13436 from NixOS/mergify/bp/2.30-maintenance/pr-13435
docker: fix nixConf (backport #13435)
2 parents 65b9e01 + 8b0cfae commit ed8f7df

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

docker.nix

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,14 @@ let
184184
} " = ";
185185
};
186186

187-
nixConfContents = toConf {
188-
sandbox = false;
189-
build-users-group = "nixbld";
190-
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
191-
};
187+
nixConfContents = toConf (
188+
{
189+
sandbox = false;
190+
build-users-group = "nixbld";
191+
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
192+
}
193+
// nixConf
194+
);
192195

193196
userHome = if uid == 0 then "/root" else "/home/${uname}";
194197

0 commit comments

Comments
 (0)