From bcabfd49bb2f9f2877d960ca7f148f7c3c71c625 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Wed, 24 Jun 2026 15:33:55 +0100 Subject: [PATCH] fix(wsl): remove non-existent interop options The NixOS-WSL module's wslConf.interop submodule declares only `enabled` and `appendWindowsPath`. `register` and `includePath` are not valid wsl.conf interop keys, and the freeform INI type does not cover keys nested under the already-declared `interop` group, so they were rejected as unknown options. Remove them. Co-Authored-By: Claude Opus 4.8 (1M context) --- system/machine/EDaaS/configuration.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/system/machine/EDaaS/configuration.nix b/system/machine/EDaaS/configuration.nix index 32ba7f9..35adc8f 100644 --- a/system/machine/EDaaS/configuration.nix +++ b/system/machine/EDaaS/configuration.nix @@ -19,9 +19,7 @@ defaultUser = "emmathorpe"; wslConf.automount.root = "/mnt"; wslConf.interop.appendWindowsPath = true; - wslConf.interop.register = true; wslConf.interop.enabled = true; - wslConf.interop.includePath = true; wslConf.network.generateHosts = false; startMenuLaunchers = true; docker-desktop.enable = false;