Auto: cleanup-2026-05-24T10-18-36Z

This commit is contained in:
2026-05-24 12:18:49 +02:00
parent 4dc460dc0c
commit 16c01a5e67
71 changed files with 1770 additions and 1731 deletions
+15 -15
View File
@@ -1,16 +1,16 @@
{ ... }:
{
perSystem = { pkgs, ... }: {
packages.custom-weather = pkgs.writeShellApplication {
name = "custom-weather";
runtimeInputs = with pkgs; [
curl
];
text = ''
while true; do
curl "https://wttr.in/?0&d&q&F&lang=fr"
sleep 7200
done
'';
_: {
perSystem = {pkgs, ...}: {
packages.custom-weather = pkgs.writeShellApplication {
name = "custom-weather";
runtimeInputs = with pkgs; [
curl
];
text = ''
while true; do
curl "https://wttr.in/?0&d&q&F&lang=fr"
sleep 7200
done
'';
};
};
};}
}