refactor(nix): remove comments and unused code, start zsh (QoL)

This commit is contained in:
indyandie 2024-05-10 00:44:59 -05:00
parent c4a10e006a
commit 937dbd5bda
No known key found for this signature in database
GPG key ID: FDB83C1AED3933E1

View file

@ -1,22 +1,11 @@
with import <nixpkgs> { };
let
pythonPackages = python3Packages;
in pkgs.mkShell rec {
name = "impurePythonEnv";
pkgs.mkShell {
name = "onix-shellder";
venvDir = "./.venv";
buildInputs = [
python310Packages.python
python310Packages.venvShellHook
# python310Packages.coverage
# python310Packages.python-mimeparse
# python310Packages.python-dateutil
# python310Packages.drf-spectacular
# python310Packages.djangorestframework
# python310Packages.django-redis
# python310Packages.django-cors-headers
# Required dependancies
black
taglib
@ -37,6 +26,7 @@ in pkgs.mkShell rec {
postShellHook = ''
# allow pip to install wheels
unset SOURCE_DATE_EPOCH
zsh -l
'';
}