From a79be701b679e151f4f0ec5e24b3fc2b1ac06576 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Thu, 16 Mar 2023 13:39:34 +0300 Subject: [PATCH] docker-stack: fix deploy.labels option --- machines/modules/docker-stack.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machines/modules/docker-stack.nix b/machines/modules/docker-stack.nix index 18017ab..fbb8546 100644 --- a/machines/modules/docker-stack.nix +++ b/machines/modules/docker-stack.nix @@ -97,7 +97,7 @@ let }; deploy = { - labels = { + labels = mkOption { default = [ ]; type = types.listOf types.str; description = lib.mdDoc "Specify labels for the service.";