Add missing configuration value
This commit is contained in:
parent
fc0ae6dcd4
commit
357d931f53
1 changed files with 4 additions and 1 deletions
|
@ -151,7 +151,10 @@ let
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
config = lib.mkMerge [
|
config = lib.mkMerge [
|
||||||
{ url = config.url; }
|
{
|
||||||
|
type = "webdav";
|
||||||
|
url = config.url;
|
||||||
|
}
|
||||||
(mkIfNotNull config.vendor "vendor")
|
(mkIfNotNull config.vendor "vendor")
|
||||||
(mkIfNotNull config.username "user")
|
(mkIfNotNull config.username "user")
|
||||||
(mkIfNotNull config.obscuredPassword "pass")
|
(mkIfNotNull config.obscuredPassword "pass")
|
||||||
|
|
Loading…
Reference in a new issue