voor-kia: Add mod update script

This commit is contained in:
Tristan Daniël Maat 2021-07-25 22:21:29 +01:00
parent 7c24369cb9
commit d94145bf34
Signed by: tlater
GPG key ID: 49670FD774E43268
4 changed files with 425 additions and 174 deletions

View file

@ -90,7 +90,22 @@
in {
devShell = with pkgs;
mkShell {
buildInputs = [ nixfmt git-lfs ];
buildInputs = [
nixfmt
git-lfs
# For the minecraft mod update script
(python3.withPackages (pypkgs:
with pypkgs; [
requests
ipython
python-language-server
pyls-black
pyls-isort
pyls-mypy
]))
];
shellHook = ''
export QEMU_OPTS="-m 3941 -smp 2 -curses"
export QEMU_NET_OPTS="hostfwd=::3022-:2222,hostfwd=::3080-:80,hostfwd=::3443-:443,hostfwd=::3021-:2221,hostfwd=::25565-:25565"