Files
ad-nix/shell.nix
John Lancaster 8a4620c574 updates
2024-09-16 02:23:39 +00:00

16 lines
337 B
Nix

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