Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a696436b90e48895139b7e0b59b75c0e64cae
13 lines
283 B
Nix
13 lines
283 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
sources,
|
|
}: let
|
|
inherit (pkgs) lib;
|
|
helix = pkgs.callPackage ./helix {};
|
|
kakoune = pkgs.callPackage ./kakoune.nix {};
|
|
fish = pkgs.callPackage ./fish {inherit lib;};
|
|
nushell = pkgs.callPackage ./nushell {};
|
|
in {
|
|
inherit kakoune fish helix nushell;
|
|
}
|