Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

programs.nom.enable

Whether to enable nom a terminal, rss feed reader…

Type: boolean

Default:

false

Example:

true

Declared by:

programs.nom.package

The nom package to use.

Type: null or package

Default:

pkgs.nom

Declared by:

programs.nom.settings

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

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

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";
  };
}

Declared by: