From 829566a23dfbe8ef7fe1b3d2949f0f984c71fc98 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 12 Oct 2017 02:02:19 +0200 Subject: [PATCH] nixos/docker-containers: Fix submodule usage The submodule of the "docker-containers" option isn't recognized as a proper submodule and thus neither properly type-checks nor are its options included in the manual. Signed-off-by: aszlig --- nixos/modules/service-managers/docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/service-managers/docker.nix b/nixos/modules/service-managers/docker.nix index 8e9c763b18af..7effe0e85d46 100644 --- a/nixos/modules/service-managers/docker.nix +++ b/nixos/modules/service-managers/docker.nix @@ -6,7 +6,7 @@ let cfg = config.docker-containers; containerModule = { - script = mkOption { + options.script = mkOption { type = types.lines; description = "Shell commands executed as the service's main process."; };