CrOS/modules/quadlets/openbao/default.nix
TheWanderingCrow 35cc552eb7 WIP: openbao
2026-02-11 09:27:33 -05:00

24 lines
348 B
Nix

{
pkgs,
lib,
config,
...
}:
let
openBaoConfig = pkgs.writeText "config.hcl" ''
ui = true
cluster_addr = "https://127.0.0.1:8201"
api_addr = "https://127.0.0.1:8200"
'';
in
{
virtualisation.quadlet = {
containers = {
openbao.containerConfig = {
image = "ghcr.io/openbao/openbao";
};
};
};
}