rework pocket-id to be more generic

This commit is contained in:
2025-07-30 10:21:32 +07:00
parent 49ed4d78c3
commit dc19d20d73
14 changed files with 169 additions and 58 deletions

View File

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