babeld module: separate default options by space
In the previous version multiple default values would generate an invalid babeld config file since all options would be concatenated without any separator.
This commit is contained in:
@@ -7,7 +7,7 @@ let
|
||||
cfg = config.services.babeld;
|
||||
|
||||
paramsString = params:
|
||||
concatMapStringsSep "" (name: "${name} ${boolToString (getAttr name params)}")
|
||||
concatMapStringsSep " " (name: "${name} ${boolToString (getAttr name params)}")
|
||||
(attrNames params);
|
||||
|
||||
interfaceConfig = name:
|
||||
|
||||
Reference in New Issue
Block a user