Skip to content

Commit

Permalink
helix: fix wrapping of extraPackages
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mrnossiom authored Nov 10, 2024
1 parent 7309007 commit 60bb110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/programs/helix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}
'';
})
]
Expand Down

0 comments on commit 60bb110

Please sign in to comment.