mob next [ci-skip] [ci skip] [skip ci]

lastFile:modules/clan/gw-router/default.nix
This commit is contained in:
2026-08-03 09:51:04 +07:00
parent 559115e52b
commit b519d3ef32
3 changed files with 82 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
{ ... }:
{
_class = "clan.service";
manifest.name = "gw-router";
manifest.description = "A gateway router service to configure most of a router features";
manifest.readme = "A gateway router service to configure most of a router features";
manifest.categories = [ "System" ];
roles.default = {
description = "A router role for managing a node as a router";
interface =
{ lib, config, ... }:
{
options = {
};
};
perInstance =
{ settings, ... }:
{
nixosModule =
{
config,
pkgs,
lib,
...
}:
let
in
{
};
};
};
}