Migrate dyndns to clanServices

This commit is contained in:
pinpox
2025-07-18 11:08:25 +02:00
parent a79027c312
commit 03b13e9ed4
6 changed files with 510 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, ... }:
let
module = lib.modules.importApply ./default.nix { };
in
{
clan.modules = {
dyndns = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.dyndns = {
imports = [ ./tests/vm/default.nix ];
clan.modules."@clan/dyndns" = module;
};
};
}