openbao as module

This commit is contained in:
TheWanderingCrow 2025-12-29 10:20:27 -05:00
parent 9e13f06027
commit cfd0dc1ae0

View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
services.openbao = {
enable = true;
settings = {
ui = true;
listener.default = {
type = "tcp";
tls_disable = true;
};
cluster_addr = "http://127.0.0.1:8201";
api_addr = "http://127.0.0.1:8200";
storage.raft.path = "/var/lib/openbao";
};
};
}