From 78719c643de83fd963926d1b2beefd8f4bddb8c1 Mon Sep 17 00:00:00 2001 From: prescientmoon Date: Wed, 22 May 2024 18:41:01 +0200 Subject: [PATCH] Add git executable for jupyter --- hosts/nixos/lapetus/services/jupyter.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/nixos/lapetus/services/jupyter.nix b/hosts/nixos/lapetus/services/jupyter.nix index f1f3f24..38bc882 100644 --- a/hosts/nixos/lapetus/services/jupyter.nix +++ b/hosts/nixos/lapetus/services/jupyter.nix @@ -11,7 +11,10 @@ let # }}} in { - systemd.services.jupyterhub.path = [ pkgs.texlive.combined.scheme-full ]; # LaTeX stuff is useful for matplotlib + systemd.services.jupyterhub.path = [ + pkgs.texlive.combined.scheme-full # LaTeX stuff is useful for matplotlib + pkgs.git # Required by the git extension + ]; services.jupyterhub = { enable = true;