nixfiles/hosts/hetzner-arm/containers/vault-ca/profiles/vault.nix
2024-05-24 20:07:25 +01:00

12 lines
196 B
Nix

{pkgs, ...}: {
services.vault = {
enable = true;
package = pkgs.vault-bin;
address = "0.0.0.0:8200";
storageBackend = "file";
extraConfig = ''
ui = true
'';
};
}