From 00d76d50e3d8d85a95ae900668e7df7ce96a5d4c Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Wed, 13 Mar 2019 18:02:31 +0100 Subject: [PATCH] chore(docker): unnecessary brackets --- modules/docker.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/docker.nix b/modules/docker.nix index 8df1ba8..b9f3264 100644 --- a/modules/docker.nix +++ b/modules/docker.nix @@ -55,7 +55,7 @@ in { export = mkOption { description = "List of images to export"; - type = types.listOf (types.package); + type = types.listOf types.package; default = []; };