nix-config/modules/hosts/t480/dwm/dwmblocks/weather.nix

22 lines
419 B
Nix
Raw Permalink Normal View History

2025-08-26 07:00:00 +01:00
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "status-weather";
runtimeInputs = with pkgs; [ curl ];
text = ''
out="$(curl -s https://wttr.in/Caerleon?format=%t)"
[[ "$out" == *"Unknown location"* ]] && exit 1
echo "$out"
2025-08-26 07:00:00 +01:00
'';
})
];
};
}