Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a6964bcbbf4d3f08ea2ebc9c22e84b200de93
12 lines
272 B
Nix
12 lines
272 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
}: 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;
|
|
}
|