nixos/services/jupyter/lab.nix

8 lines
150 B
Nix

{pkgs, ...}: {
imports = [./default.nix];
services.jupyter = {
command = "jupyter-lab";
package = pkgs.python3Packages.jupyterlab;
};
}