fix(vaultwarden): Update image - fix webui not loading

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