1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 22:03:27 +02:00

rbw: fix url option examples

rbw expects a protocol for its base_url setting[1]. Otherwise fails
with `rbw unlock: failed to parse base url: relative URL without a
base`.

[1] 741a72cf0d/README.md (configuration)
This commit is contained in:
Jakob Kukla 2024-06-28 16:16:01 +02:00 committed by GitHub
parent 1a4f12ae0b
commit 19e2f43e0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ let
base_url = mkOption {
type = with types; nullOr str;
default = null;
example = "bitwarden.example.com";
example = "https://bitwarden.example.com/";
description =
"The base-url for a self-hosted bitwarden installation.";
};
@ -27,7 +27,7 @@ let
identity_url = mkOption {
type = with types; nullOr str;
default = null;
example = "identity.example.com";
example = "https://identity.example.com/";
description = "The identity url for your bitwarden installation.";
};