fix(vaultwarden): Update image - fix webui not loading
Some checks failed
Build / build (Development) (push) Has been cancelled
Build / build (Testing) (push) Has been cancelled
Build / build (Development) (pull_request) Has been cancelled
Build / build (Testing) (pull_request) Has been cancelled
Build / Determining hosts to build (pull_request) Failing after 11m28s
Build / Determining hosts to build (push) Failing after 12m28s

This commit is contained in:
Tibo De Peuter 2026-03-05 20:26:33 +01:00
parent 47245b2b96
commit 5a031b48ed
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -13,12 +13,12 @@ in {
description = "Vaultwarden WebUI port";
};
domain = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
example = "https://vault.depeuter.dev";
description = "Domain to configure Vaultwarden on";
};
name = lib.mkOption {
type = lib.types.string;
type = lib.types.str;
example = "Hugo's Vault";
description = "Service name to use for invitations and mail";
};
@ -77,7 +77,7 @@ in {
dataDir = "/data";
in {
hostname = "vaultwarden";
image = "vaultwarden/server:1.34.3-alpine";
image = "vaultwarden/server:1.35.4-alpine";
autoStart = true;
ports = [
"${toString cfg.port}:80/tcp"