helix: rework

This commit is contained in:
Bloxx12 2025-06-04 08:26:52 +02:00
commit 2239e0e983
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
5 changed files with 55 additions and 22 deletions

View file

@ -1,10 +1,9 @@
{
pkgs,
helix,
}: let
wrapped-helix = pkgs.callPackage ./helix {inherit helix;};
{pkgs}: let
inherit (pkgs) lib;
wrapped-helix = pkgs.callPackage ./helix {};
kakoune = pkgs.callPackage ./kakoune.nix {};
fish = pkgs.callPackage ./shell {};
fish = pkgs.callPackage ./shell {inherit lib;};
in {
inherit wrapped-helix kakoune fish;
inherit kakoune fish;
helix = wrapped-helix;
}