mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
18 lines
238 B
Nix
18 lines
238 B
Nix
{
|
|
writeShellApplication,
|
|
curl,
|
|
...
|
|
}:
|
|
writeShellApplication {
|
|
name = "custom-weather";
|
|
runtimeInputs = [
|
|
curl
|
|
];
|
|
text = ''
|
|
while true; do
|
|
curl "https://wttr.in/?0&d&q&F&lang=fr"
|
|
sleep 7200
|
|
done
|
|
'';
|
|
}
|