diff options
| -rw-r--r-- | options.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options.nix b/options.nix index 91ea7c49..383b554d 100644 --- a/options.nix +++ b/options.nix @@ -203,7 +203,7 @@ in }; extraPaths = mkOption { - type = anything; + type = listOf (attrsOf anything); default = [ ]; description = '' Extra paths to make available to the container. @@ -261,7 +261,7 @@ in }; commonPaths = mkOption { - type = types.anything; + type = types.listOf (types.attrsOf types.anything); default = [ ]; description = '' Common extra paths to make available to the container. |
