simplechat/shell.nix

22 lines
250 B
Nix

let
pkgs = import <nixpkgs> {
overlays = [ ];
};
in
pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
python3
sqlite
];
shellHook = ''
source .venv/bin/activate
'';
exitHook = ''
echo "closing env.."
'';
}