Move helix runtime inputs to hm extraPackages option

This commit is contained in:
ulic-youthlic 2025-06-09 10:47:34 +08:00
parent 11e14b01f9
commit 915256aa94
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
8 changed files with 67 additions and 84 deletions

View file

@ -9,6 +9,7 @@ in
./radicle-explorer.nix
./wshowkeys.nix
./QQ.nix
./helix.nix
]
|> map (file: import file args)
|> (overlays: (lib.composeManyExtensions overlays) final prev)

View file

@ -0,0 +1,5 @@
{outputs, ...}: final: prev: let
inherit (prev.stdenv.hostPlatform) system;
in {
helix = outputs.packages."${system}".helix;
}