cluster/services/frangiclave: init trivial WIP

This commit is contained in:
Max Headroom 2024-07-20 22:18:01 +02:00
parent 6eee030b7a
commit ea3414c427
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
services.frangiclave = {
nodes = {
server = [ "VEGAS" "grail" "prophet" ]; # 3 reliable nodes
agent = []; # all nodes, for vault-agent, secret templates, etc.
};
nixos = {
server = [
./server.nix
];
agent = [];
};
};
}

View file

@ -0,0 +1,8 @@
{ depot, ... }:
{
services.vault = {
enable = true;
package = depot.packages.openbao;
};
}