From 30d33dfa07c4022065c3ad4aa37f87713aceeb1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sun, 1 Feb 2026 21:10:12 +0100 Subject: [PATCH] vault: replace vault with openbao --- services/vault/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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"; + }; + }; }