.dotfiles/pkgs/timer/default.nix
2024-12-29 00:36:04 +01:00

9 lines
201 B
Nix

{ name, writeShellApplication, speechd, ... }:
writeShellApplication {
inherit name;
runtimeInputs = [ speechd ];
text = ''
sleep "$1"; while true; do spd-say "$2"; sleep 0.5; done;
'';
}