lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

esphome: add update script that includes the dashboard

+13
+1
pkgs/tools/misc/esphome/default.nix
··· 91 91 92 92 passthru = { 93 93 dashboard = esphome-dashboard; 94 + updateScript = callPackage ./update.nix {}; 94 95 }; 95 96 96 97 meta = with lib; {
+12
pkgs/tools/misc/esphome/update.nix
··· 1 + { writeShellScript 2 + , lib 3 + , git 4 + , nix-update 5 + }: 6 + 7 + writeShellScript "update-esphome" '' 8 + PATH=${lib.makeBinPath [ git nix-update ]} 9 + 10 + nix-update esphome.dashboard 11 + nix-update esphome 12 + ''