mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-14 00:28:58 -05:00
24 lines
348 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|