5083ee08a2
GitOrigin-RevId: 10ecda252ce1b3b1d6403caeadbcc8f30d5ab796
12 lines
186 B
Nix
12 lines
186 B
Nix
{ writeShellScript
|
|
, lib
|
|
, git
|
|
, nix-update
|
|
}:
|
|
|
|
writeShellScript "update-esphome" ''
|
|
PATH=${lib.makeBinPath [ git nix-update ]}
|
|
|
|
nix-update esphome.dashboard
|
|
nix-update esphome
|
|
''
|