Merge pull request #130 from jacekpoz/multiplemappingfix

mkMultipleMappingOption fix
This commit is contained in:
NotAShelf 2023-08-17 18:48:33 +03:00 committed by GitHub
commit 4935c23e10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ in
mkMultipleMappingOption = description: defaults:
self.mkOption {
type = self.types.nullOr self.types.listOf self.types.str;
type = self.types.nullOr (self.types.listOf self.types.str);
default = defaults;
inherit description;
};