nix-config/modules/hosts/t480/dwm/dwmblocks/weather.nix
Oliver Davies d0b4f8cdf5
All checks were successful
/ check (push) Successful in 49s
dwmblocks: add the current temperature
2025-08-26 20:33:36 +01:00

17 lines
325 B
Nix

{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "status-weather";
runtimeInputs = with pkgs; [ curl ];
text = ''
curl -s https://wttr.in/Caerleon?format=%t
'';
})
];
};
}