MyNixOS website logo

Attribute set of profile options. The keys of that attribute set consist of ULIDs. A ULID is made of 16 characters, each of which is one of '0123456789ABCDEFGHJKMNPQRSTVWXYZ' (Excluding I, L, O and U). See https://github.com/ulid/spec?tab=readme-ov-file#canonical-string-representation.

Declarations
Type
attribute set of (submodule)
Default
{ }
Example
{
  "0123456789ABCDEFGHJKMNPQRSTVWXYZ".sites."ZYXWVTSRQPNMKJHGFEDCBA9876543210" = {
    name = "MDN Web Docs";
    url = "https://developer.mozilla.org/";
    manifestUrl = "https://developer.mozilla.org/manifest.f42880861b394dd4dc9b.json";
    desktopEntry.icon = pkgs.fetchurl {
      url = "https://developer.mozilla.org/favicon-192x192.png";
      sha256 = "0p8zgf2ba48l2pq1gjcffwzmd9kfmj9qc0v7zpwf2qd54fndifxr";
    };
  };
}