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