From 40dc5fdcb5fc4292b35caaebffec9e71c8c6e3df Mon Sep 17 00:00:00 2001 From: Elsa Date: Fri, 3 Jan 2025 11:19:58 +0800 Subject: [PATCH] Update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e6d711..2d816e9 100644 --- a/README.md +++ b/README.md @@ -140,11 +140,11 @@ This same list is also used to determine the `RPATH` when automatically patching ``` ### `installPath` -The installation path for VS Code server is configurable and the default can differ for alternative builds (e.g. oss and insider), so this option allows you to configure which installation path should be monitered and automatically fixed. +The installation path for VS Code server is configurable and the default can differ for alternative builds (e.g. oss and insider), so this option allows you to configure which installation path should be monitered and automatically fixed. If you have multiple installations, you can specify them as an array. ```nix { - services.vscode-server.installPath = "$HOME/.vscode-server-oss"; + services.vscode-server.installPath = [ "$HOME/.vscode-server" "$HOME/.vscode-server-oss" ]; } ```