nichts/packages/default.nix

11 lines
217 B
Nix
Raw Normal View History

2025-04-09 15:31:18 +02:00
{
pkgs,
helix,
}: let
wrapped-helix = pkgs.callPackage ./helix {inherit helix;};
2025-03-12 18:49:01 +01:00
kakoune = pkgs.callPackage ./kakoune.nix {};
2025-03-03 15:43:20 +01:00
fish = pkgs.callPackage ./shell {};
in {
2025-04-09 15:31:18 +02:00
inherit wrapped-helix kakoune fish;
2025-03-03 15:43:20 +01:00
}