mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
vscode: correct base path from which to pull extensions
This commit is contained in:
parent
08094f3cc2
commit
595150be86
1 changed files with 9 additions and 6 deletions
|
@ -71,7 +71,10 @@ in
|
||||||
# Adapted from https://discourse.nixos.org/t/vscode-extensions-setup/1801/2
|
# Adapted from https://discourse.nixos.org/t/vscode-extensions-setup/1801/2
|
||||||
home.file =
|
home.file =
|
||||||
let
|
let
|
||||||
toPaths = p:
|
toPaths = path:
|
||||||
|
let
|
||||||
|
p = "${path}/share/vscode/extensions";
|
||||||
|
in
|
||||||
# Links every dir in p to the extension path.
|
# Links every dir in p to the extension path.
|
||||||
mapAttrsToList (k: v:
|
mapAttrsToList (k: v:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue