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

18 lines
325 B
Nix
Raw 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 = ''
curl -s https://wttr.in/Caerleon?format=%t
'';
})
];
};
}