empty inventories emergency-access and admin

This commit is contained in:
2025-07-11 16:21:06 +07:00
parent 6fc0884250
commit 6727a5c1f6
2 changed files with 21 additions and 0 deletions

19
inventories/default.nix Normal file
View File

@@ -0,0 +1,19 @@
{ inputs, self, ... }:
{
clan = {
inventory = {
instances.emergency-access = {
module = {
name = "emergency-access";
input = "clan-core";
};
roles.default.tags."all" = { };
};
services.admin = {
default.config.allowedKeys = [ ];
};
};
};
}