mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08: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:
@@ -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.";
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user