pocket-id service

This commit is contained in:
2025-07-14 13:42:40 +07:00
parent 2789aa74af
commit 6e80cc43ae
4 changed files with 88 additions and 3 deletions

View File

@@ -1,6 +1,14 @@
{ inputs, self, ... }:
{
inputs,
self,
lib,
...
}:
{
clan = {
modules = {
pocket-id = ../modules/clan/pocket-id;
};
inventory = {
instances = {
@@ -21,6 +29,14 @@
roles.default.machines = [ "b4l" ];
};
};
instances.pocket-id = {
module = {
name = "pocket-id";
input = "self";
};
roles.default.machines.b4l = { };
};
};
};
}