8 lines
150 B
Nix
8 lines
150 B
Nix
{pkgs, ...}: {
|
|
imports = [./default.nix];
|
|
services.jupyter = {
|
|
command = "jupyter-lab";
|
|
package = pkgs.python3Packages.jupyterlab;
|
|
};
|
|
}
|