diff --git a/.envrc b/.envrc deleted file mode 100644 index 3550a30..0000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use flake diff --git a/.gitignore b/.gitignore index 4bb3f01..68bc17f 100644 --- a/.gitignore +++ b/.gitignore @@ -122,7 +122,6 @@ celerybeat.pid # Environments .env .venv -.direnv env/ venv/ ENV/ @@ -158,4 +157,4 @@ cython_debug/ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. -.idea/ +#.idea/ diff --git a/flake.lock b/flake.lock deleted file mode 100644 index 7b05b3b..0000000 --- a/flake.lock +++ /dev/null @@ -1,27 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1705913940, - "narHash": "sha256-pjSl/1cwYczhSSudR6z0JA/8MclZx/ztzTahvOzwPPw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "9ed792777ae7967fee22dae2e88fdb6cb965b193", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 4e07532..0000000 --- a/flake.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - description = "A Nix-flake-based Python development environment"; - - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - - outputs = { self, nixpkgs }: - let - forEachSupportedSystem = f: nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (system: f { - pkgs = import nixpkgs { inherit system; }; - }); - in - { - devShells = forEachSupportedSystem ({ pkgs }: { - default = pkgs.mkShell { - packages = with pkgs; [ python311 virtualenv libffi libsodium jetbrains.pycharm-community ] ++ - (with pkgs.python311Packages; [ pip virtualenv ]); - }; - }); - }; -}