MyNixOS website logo

Settings for nom including themes, rss feeds, and openers for specific url regexes.

Options are listed on the github: https://github.com/guyfedwards/nom.

Declarations
Type
attribute set of anything
Default
{ }
Example
{
  autoread = true;
  feeds = [
    {
      name = "Jeff Geerling";
      url = "https://www.youtube.com/feeds/videos.xml?channel_id=UCR-DXc1voovS8nhAvccRZhg";
    }
  ];
  openers = [
    {
      cmd = "mpv %s";
      regex = "youtube";
    }
  ];
  ordering = "desc";
  showread = false;
  theme = {
    glamour = "dark";
  };
}