mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
headscale.oidc: client_secret_path is a string
It can be include an environment-variable, like `${CREDENTIALS_DIRECTORY}/some-path`, failing validation for `types.path`.
This commit is contained in:
parent
d03b899c28
commit
28cf78b857
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
client_secret_path = mkOption {
|
client_secret_path = mkOption {
|
||||||
type = types.nullOr types.path;
|
type = types.nullOr types.str;
|
||||||
default = null;
|
default = null;
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Path to OpenID Connect client secret file. Expands environment variables in format ''${VAR}.
|
Path to OpenID Connect client secret file. Expands environment variables in format ''${VAR}.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue