First of all, thank you so much for open-sourcing this wonderful project! I find it a quite elegant solution, not only in terms of ergonomics, but also because of its aesthetics!
What and How
Addresses renderers/svgFIXME comment by implementing the service details' order; makes use of the order field, as documented and specified in options/services.nix.
Defaults to names lexicographical order in case of an order tie (e.g. when order is not specified), which feels like the (current and) expected behavior.
Snippet
{
# ...
details.http = {
text = toString config.services.tvheadend.httpPort;
order = 1;
};
details.htsp = {
text = toString config.services.tvheadend.htspPort;
order = 2;
};
}
Before
After
Checklist
[x] nix flake check
[x] nix build .#docs
[x] Conventional Commits
Please let me know if something's off or missing, and once again thank you for your work.
First of all, thank you so much for open-sourcing this wonderful project! I find it a quite elegant solution, not only in terms of ergonomics, but also because of its aesthetics!
What and How
Addresses
renderers/svg
FIXME comment by implementing the service details' order; makes use of theorder
field, as documented and specified inoptions/services.nix
.Defaults to
name
s lexicographical order in case of anorder
tie (e.g. whenorder
is not specified), which feels like the (current and) expected behavior.Snippet
Before
After
Checklist
nix flake check
nix build .#docs
Please let me know if something's off or missing, and once again thank you for your work.