added shell.nix

This commit is contained in:
John Lancaster
2024-09-16 01:45:32 +00:00
parent 9af8177939
commit 219120983b

13
shell.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {}, unstable ? import <nixpkgs-unstable> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python312
unstable.uv
# unstable.appdaemon
];
shellHook = ''
echo "Welcome to the Nix shell for AppDaemon development"
'';
}