machines/tangra: poyfestival.com website

This commit is contained in:
2026-06-01 10:42:03 +07:00
parent bc16c72707
commit da6be4946f
35 changed files with 3463 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{ self, inputs, ... }:
let
module = ./default.nix;
in
{
clan.modules = {
wordpress = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-wordpress = {
imports = [ ./tests/vm/default.nix ];
_module.args = { inherit self inputs; };
clan.modules."@clan/wordpress" = module;
};
};
}