add radicle-explorer module, and enable it on Cape

This commit is contained in:
ulic-youthlic 2025-05-12 16:19:44 +08:00
parent 6632dde007
commit 975bf38dc2
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
8 changed files with 42 additions and 1 deletions

View file

@ -8,6 +8,7 @@ in
./dae.nix
./jujutsu.nix
./spotifyx.nix
./radicle-explorer.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 {
radicle-explorer = outputs.packages."${system}".radicle-explorer;
}