helix: use upstream version

This commit is contained in:
Bloxx12 2025-04-09 15:31:18 +02:00
commit af0fd0f55e
6 changed files with 129 additions and 27 deletions

View file

@ -7,7 +7,7 @@
pkgs,
...
}: let
inherit (self.packages.${pkgs.stdenv.system}) helix fish;
inherit (self.packages.${pkgs.stdenv.system}) wrapped-helix fish;
in {
environment.systemPackages = builtins.attrValues {
inherit
@ -39,8 +39,8 @@ in {
zip
zoxide
;
inherit helix fish;
inherit wrapped-helix fish;
};
# helix as the only editor, a reasonable choice.
environment.sessionVariables.EDITOR = pkgs.lib.getExe' helix "hx";
environment.sessionVariables.EDITOR = pkgs.lib.getExe' wrapped-helix "hx";
}

View file

@ -79,6 +79,5 @@
wordgrinder
xournalpp
;
inherit (self.packages.${pkgs.stdenv.system}) helix;
};
}