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).
This commit is contained in:
moversity
2026-05-02 10:09:50 +00:00
committed by GitHub
parent 45f916ecea
commit b0f330ee1e

View File

@@ -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.";
};