system/machine/EDaaS/configuration.nix sets two options under wsl.wslConf.interop that the NixOS-WSL module does not declare:
wslConf.interop.register
wslConf.interop.includePath
The module's interop submodule declares only enabled and appendWindowsPath. The freeform INI type on wslConf does not extend to keys nested under the already-declared interop group, so evaluation rejects these as unknown options.
Neither is a valid wsl.conf[interop] key — the section supports only enabled and appendWindowsPath. (register is a wsl.exe CLI verb, not a config field; includePath does not exist.)
Fix
Remove both lines.
`system/machine/EDaaS/configuration.nix` sets two options under `wsl.wslConf.interop` that the NixOS-WSL module does not declare:
- `wslConf.interop.register`
- `wslConf.interop.includePath`
The module's `interop` submodule declares only `enabled` and `appendWindowsPath`. The freeform INI type on `wslConf` does not extend to keys nested under the already-declared `interop` group, so evaluation rejects these as unknown options.
Neither is a valid `wsl.conf` `[interop]` key — the section supports only `enabled` and `appendWindowsPath`. (`register` is a `wsl.exe` CLI verb, not a config field; `includePath` does not exist.)
### Fix
Remove both lines.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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.