This adds a (for now hidden) clan network command that exposes list, ping, overview subcommands to get informations about configured networks. ClanServices can now use the exports to define network specific information. This is not the complete feature yet, as we are lacking more tests and documentation, but merging this now makes it easier to iterate.
10 lines
121 B
Nix
10 lines
121 B
Nix
{ lib, ... }:
|
|
let
|
|
module = lib.modules.importApply ./default.nix { };
|
|
in
|
|
{
|
|
clan.modules = {
|
|
tor = module;
|
|
};
|
|
}
|