Add certificates service

This commit is contained in:
pinpox
2025-08-15 13:29:02 +02:00
committed by pinpox
parent c3c08482ac
commit d2456be3dd
48 changed files with 695 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{
self,
lib,
...
}:
let
module = lib.modules.importApply ./default.nix {
inherit (self) packages;
};
in
{
clan.modules.certificates = module;
perSystem =
{ ... }:
{
clan.nixosTests.certificates = {
imports = [ ./tests/vm/default.nix ];
clan.modules.certificates = module;
};
};
}