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.feedr.enable

Whether to enable Feedr, a feature-rich terminal-based RSS/Atom feed reader written in Rust.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.feedr.package

The feedr package to use.

Type: null or package

Default:

pkgs.feedr

Declared by:

programs.feedr.settings

Settings for feedr.

Configuration written to $XDG_CONFIG_HOME/feedr/config.toml.

Options are listed on the github: https://github.com/bahdotsh/feedr.

Type: TOML value

Default:

{ }

Example:

{
  general = {
    max_dashboard_items = 100;
    auto_refresh_interval = 0;
    refresh_enabled = false;
    refresh_rate_limit_delay = 2000;
  };

  network = {
    http_timeout = 15;
    user_agent = "Mozilla/5.0 (compatible; Feedr/1.0; +https://github.com/bahdotsh/feedr)";
  };

  ui = {
    tick_rate = 100;
    error_display_timeout = 3000;
    theme = "dark";
    compact_mode = "auto";
  };

  default_feeds = [
    {
      url = "https://nixos.org/blog/stories-rss.xml";
      category = "NixOS";
    }
  ];
};

Declared by: