From 219120983bc9de1fb0f23a88b44b32efe88be916 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 16 Sep 2024 01:45:32 +0000 Subject: [PATCH] added shell.nix --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix 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" + ''; +}