Files
infra/inventories/default.nix

20 lines
330 B
Nix

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