Add missing configuration value

This commit is contained in:
Manuel Thalmann 2024-05-16 02:16:29 +02:00
parent fc0ae6dcd4
commit 357d931f53

View file

@ -151,7 +151,10 @@ let
config = {
config = lib.mkMerge [
{ url = config.url; }
{
type = "webdav";
url = config.url;
}
(mkIfNotNull config.vendor "vendor")
(mkIfNotNull config.username "user")
(mkIfNotNull config.obscuredPassword "pass")