Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a69641c36f9763e104087a559c148d0449f00
20 lines
309 B
Nix
20 lines
309 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
|
|
;
|
|
}
|