fix(wsl): remove non-existent interop options #43
Reference in New Issue
Block a user
Delete Branch "fix/wsl-interop-options"
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?
Removes two options under
wsl.wslConf.interopinsystem/machine/EDaaS/configuration.nixthat the NixOS-WSL module does not declare:wslConf.interop.registerwslConf.interop.includePathThe
interopsubmodule declares onlyenabledandappendWindowsPath, and the freeform INI type onwslConfdoes not cover keys nested under the already-declaredinteropgroup, so these were rejected as unknown options. Neither is a validwsl.conf[interop]key.Verified
nix evalofconfig.wsl.wslConf.interopnow resolves to{"appendWindowsPath":true,"enabled":true}.Closes #42