mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00: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:
parent
1a4f12ae0b
commit
19e2f43e0b
1 changed files with 2 additions and 2 deletions
|
@ -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.";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue