1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-06 09:01:04 +01:00

vscode: specify full path

The script executes in `/usr/local/bin`, so specifying the full path to the `Library` dir is necessary.

(cherry picked from commit c23168acf5)
This commit is contained in:
Louis Orleans 2025-08-05 12:44:27 -07:00 committed by Robert Helgesson
parent 7e96494bf4
commit 4fb695d108
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

@ -46,7 +46,7 @@ let
userDir =
if pkgs.stdenv.hostPlatform.isDarwin then
"Library/Application Support/${configDir}/User"
"${config.home.homeDirectory}/Library/Application Support/${configDir}/User"
else
"${config.xdg.configHome}/${configDir}/User";