forked from emily/nixfiles
15 lines
386 B
Nix
15 lines
386 B
Nix
{ lib, modulesPath, ... }: {
|
|
imports = [
|
|
"${modulesPath}/virtualisation/docker-image.nix"
|
|
../../common
|
|
../../profiles/builder.nix
|
|
../../profiles/headless.nix
|
|
];
|
|
|
|
networking.hostName = "build-worker-oci";
|
|
services.resolved.enable = lib.mkForce false;
|
|
kyouma = {
|
|
machine-type.container = true;
|
|
deployment.auto-upgrade.enable = lib.mkForce false;
|
|
};
|
|
}
|