mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
tweak jupyterlab script
This commit is contained in:
parent
c9c637e90d
commit
e8a3d8a098
1 changed files with 4 additions and 7 deletions
|
@ -15,12 +15,9 @@ builtins.mapAttrs
|
|||
program = toString (pkgs.writeShellScript n v);
|
||||
})
|
||||
{
|
||||
jupyterlab =
|
||||
let
|
||||
jupy = pkgs.python3.withPackages (p: with p; [ jupyterlab ipython ]);
|
||||
in
|
||||
''
|
||||
exec ${jupy}/bin/python -m jupyterlab "$@"
|
||||
jupyterlab = ''
|
||||
jupy=${pkgs.python3.withPackages (p: [ p.jupyterlab p.ipython ])}
|
||||
exec $jupy/bin/python -m jupyterlab "$@"
|
||||
'';
|
||||
|
||||
qemu-bios = ''
|
||||
|
|
Loading…
Reference in a new issue