10 lines
217 B
Nix
10 lines
217 B
Nix
{
|
|
pkgs,
|
|
helix,
|
|
}: let
|
|
wrapped-helix = pkgs.callPackage ./helix {inherit helix;};
|
|
kakoune = pkgs.callPackage ./kakoune.nix {};
|
|
fish = pkgs.callPackage ./shell {};
|
|
in {
|
|
inherit wrapped-helix kakoune fish;
|
|
}
|