Hi. I am trying to modify my homepage instance services.homepage-dashboard.services.
This option uses pkgs.formats.yaml on the backend to generate a yaml file.
I need this yaml file to be in the format:
fields: ["wanted", "queued"]
I write double single quote to try and escape the string
fields = ''["wanted", "queued"]'';
However this gives my single quotes on the outside.
You are right and all of this was for nothing.
I tried to use:
fields = ''["wanted", "queued"]'';
and that work I do not know why it did not work before. silly me.
The application did not care about the single quote around the brackets.
Thank you all.