shell improvements

This commit is contained in:
John Lancaster
2024-09-16 03:35:35 +00:00
parent 20b9647993
commit 0999bf43ec

View File

@@ -6,10 +6,16 @@ pkgs.mkShell {
unstable.uv unstable.uv
unstable.python312Packages.ipykernel unstable.python312Packages.ipykernel
unstable.python312Packages.rich unstable.python312Packages.rich
pkgs.python312Packages.iso8601
# unstable.appdaemon # unstable.appdaemon
]; ];
shellHook = '' shellHook = ''
echo "Welcome to the Nix shell for AppDaemon development" echo "Welcome to the Nix shell for AppDaemon development"
alias build="uv run python -m build"
alias dbuild="docker build -t acockburn/appdaemon:local-dev /usr/src/app"
alias fbuild="build && dbuild"
alias clean="cd /usr/src/app && rm -rf ./build ./dist"
cd /usr/src/app
''; '';
} }