1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

vscode: specify full path

The script executes in `/usr/local/bin`, so specifying the full path to the `Library` dir is necessary.
This commit is contained in:
Louis Orleans 2025-08-05 12:44:27 -07:00 committed by Austin Horstman
parent 9b59dcee0b
commit c23168acf5

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";