nichts/packages/default.nix

10 lines
234 B
Nix
Raw Normal View History

2025-06-04 08:26:52 +02:00
{pkgs}: let
inherit (pkgs) lib;
wrapped-helix = pkgs.callPackage ./helix {};
2025-03-12 18:49:01 +01:00
kakoune = pkgs.callPackage ./kakoune.nix {};
2025-06-04 08:26:52 +02:00
fish = pkgs.callPackage ./shell {inherit lib;};
2025-03-03 15:43:20 +01:00
in {
2025-06-04 08:26:52 +02:00
inherit kakoune fish;
helix = wrapped-helix;
2025-03-03 15:43:20 +01:00
}