WSL config sets non-existent interop options #42
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
system/machine/EDaaS/configuration.nixsets two options underwsl.wslConf.interopthat the NixOS-WSL module does not declare:wslConf.interop.registerwslConf.interop.includePathThe module's
interopsubmodule declares onlyenabledandappendWindowsPath. The freeform INI type onwslConfdoes not extend to keys nested under the already-declaredinteropgroup, so evaluation rejects these as unknown options.Neither is a valid
wsl.conf[interop]key — the section supports onlyenabledandappendWindowsPath. (registeris awsl.exeCLI verb, not a config field;includePathdoes not exist.)Fix
Remove both lines.