Files
ad-nix/shell.nix
John Lancaster 219120983b added shell.nix
2024-09-16 01:45:32 +00:00

14 lines
260 B
Nix

{ 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"
'';
}