10 lines
152 B
Nix
10 lines
152 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "rss-sync";
|
||
|
runtimeInputs = [ "newsboat" ];
|
||
|
text = ''
|
||
|
newsboat --execute="reload"
|
||
|
'';
|
||
|
}
|