From 92461451951d0eb50ba899bca1682078113d1a37 Mon Sep 17 00:00:00 2001 From: Christoph Date: Tue, 12 Oct 2021 18:50:00 +0200 Subject: [PATCH] upd --- .envrc | 1 - shell.nix | 41 ----------------------------------------- 2 files changed, 42 deletions(-) delete mode 100644 .envrc delete mode 100644 shell.nix diff --git a/.envrc b/.envrc deleted file mode 100644 index 051d09d..0000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -eval "$(lorri direnv)" diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 11cede7..0000000 --- a/shell.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ pkgs ? import {} }: - -with pkgs; - -let myPython = python39.buildEnv.override { - extraLibs = with python39Packages; [ - # Common Libs - rich - # numpy - # matplotlib - # scipy - # torch - - # Doom Emacs Libs - black - pyflakes - isort - nose - pytest - - # For Discord-Bot - python-dotenv # Env - discordpy # Discord - beautifulsoup4 # Scraping - selenium # Scraping - pynacl # Voice - ]; - }; -in - -mkShell { - buildInputs = [ - myPython - nodePackages.pyright # LSP - pipenv # Doom - - firefox # Selenium - geckodriver # Selenium - ffmpeg # Voice - ]; -}