diff --git a/dns/types/records/SVCB.nix b/dns/types/records/SVCB.nix index 1a4d8ac..f462296 100644 --- a/dns/types/records/SVCB.nix +++ b/dns/types/records/SVCB.nix @@ -9,6 +9,7 @@ let filter isInt isList + isString mapAttrsToList mkOption types @@ -24,6 +25,8 @@ let "${name}=${concatStringsSep "," value}" else if isInt value then "${name}=${builtins.toString value}" + else if isString value then + "${name}=${value}" else "" ) params