nixos/davfs2: fix the warning that deprecates extraConfig

This commit is contained in:
éclairevoyant 2024-04-08 18:33:55 -04:00
parent 274dc1ce96
commit 0739d3c4c0
No known key found for this signature in database
GPG Key ID: E3813AEAA02DB54B

View File

@ -86,7 +86,7 @@ in
config = mkIf cfg.enable {
warnings = lib.optional (cfg.extraConfig != null) ''
warnings = lib.optional (cfg.extraConfig != "") ''
services.davfs2.extraConfig will be deprecated in future releases, please use the settings option now.
'';