From b0f330ee1ee487515a6f8a684e02e5b8ad4ab597 Mon Sep 17 00:00:00 2001 From: moversity <148445403+moversity@users.noreply.github.com> Date: Sat, 2 May 2026 10:09:50 +0000 Subject: [PATCH] nixos/vaultwarden: add example for .domain option Adding an example provides necessary guideline for how the format should be (i.e. without leading https://, else the domain is added as a base path, e.g. /vaultwarden.example.com). The example was chosen to match the example config (bitwarden.example.com). --- nixos/modules/services/security/vaultwarden/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/security/vaultwarden/default.nix b/nixos/modules/services/security/vaultwarden/default.nix index b43ecc58f156..5c1b9e1ed114 100644 --- a/nixos/modules/services/security/vaultwarden/default.nix +++ b/nixos/modules/services/security/vaultwarden/default.nix @@ -173,6 +173,7 @@ in domain = lib.mkOption { type = with lib.types; nullOr str; default = null; + example = "bitwarden.example.com"; description = "The domain under which VaultWarden will be reachable."; };