{ pkgs, ... }:
pkgs.writeShellApplication {
name = "rss-sync";
runtimeInputs = [ "newsboat" ];
text = ''
newsboat --execute="reload"
'';
}