18 lines
325 B
Nix
18 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
|
||
|
'';
|
||
|
})
|
||
|
];
|
||
|
};
|
||
|
}
|