MyNixOS website logo

Settings for feedr.

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

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

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