From 3448aa48478c25e4da898647559fba6028380eda Mon Sep 17 00:00:00 2001 From: Marven11 <110723864+Marven11@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:26:02 +0800 Subject: [PATCH] Update flake.nix and .gitignore --- .gitignore | 6 +++++- flake.nix | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 5b962e5..3588546 100644 --- a/.gitignore +++ b/.gitignore @@ -104,6 +104,7 @@ celerybeat.pid # Environments .env .venv +.venv* env/ venv/ ENV/ @@ -129,4 +130,7 @@ dmypy.json .pyre/ # vscode config -.vscode/ \ No newline at end of file +.vscode/ + +# notebooks are used for devs +*.ipynb diff --git a/flake.nix b/flake.nix index 173a7a5..1f91c64 100644 --- a/flake.nix +++ b/flake.nix @@ -21,7 +21,7 @@ in { devShells.default = pkgs.mkShell { name = "python-venv"; - venvDir = "./.venv"; + venvDir = "./.venv-nixos"; buildInputs = [ pythonPackages.python pythonPackages.venvShellHook