nix-config/pkgs/rss-sync/default.nix

10 lines
152 B
Nix
Raw Permalink Normal View History

2023-08-13 20:13:46 +02:00
{ pkgs, ... }:
pkgs.writeShellApplication {
name = "rss-sync";
runtimeInputs = [ "newsboat" ];
text = ''
newsboat --execute="reload"
'';
}