diff --git a/services/vault/default.nix b/services/vault/default.nix index 41b2ab6..31fb5af 100644 --- a/services/vault/default.nix +++ b/services/vault/default.nix @@ -1,8 +1,11 @@ { ... }: { - services.vault = { + services.openbao = { enable = true; - storageBackend = "file"; + settings = { + storage.file.path = "/var/lib/openbao"; + }; + }; }