diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..643291c --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +{ pkgs ? import {}, unstable ? import {} }: + +pkgs.mkShell { + buildInputs = [ + pkgs.python312 + unstable.uv + # unstable.appdaemon + ]; + + shellHook = '' + echo "Welcome to the Nix shell for AppDaemon development" + ''; +}