This commit is contained in:
foosinn 2022-01-15 02:25:47 +01:00
commit 7a4241063a
4 changed files with 105 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.bashInteractive
pkgs.esphome
];
}