{ 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 ''; }) ]; }; }