mirror of
https://github.com/nix-community/home-manager
synced 2024-11-22 19:19:45 +01:00
helix: fix wrapping of extraPackages
This makes extraPackages the default, but they do not shadow the env so you can still have packages (e.g. LSPs) with a different version than the global one in you local env like nix's shells.
This commit is contained in:
parent
7309007271
commit
60bb110917
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ in {
|
|||
nativeBuildInputs = [ pkgs.makeWrapper ];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/hx \
|
||||
--prefix PATH : ${lib.makeBinPath cfg.extraPackages}
|
||||
--suffix PATH : ${lib.makeBinPath cfg.extraPackages}
|
||||
'';
|
||||
})
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue