From 44164df8f70a85587ec02ee76a826a7ce02d8727 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 9 Jun 2026 13:41:28 +0100 Subject: [PATCH] fix(edaas): get Linux to Windows interop enabled --- system/machine/EDaaS/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/system/machine/EDaaS/configuration.nix b/system/machine/EDaaS/configuration.nix index 3136a89..13bbc90 100644 --- a/system/machine/EDaaS/configuration.nix +++ b/system/machine/EDaaS/configuration.nix @@ -18,7 +18,10 @@ enable = true; defaultUser = "emmathorpe"; wslConf.automount.root = "/mnt"; - wslConf.interop.appendWindowsPath = false; + 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;