Unverified Commit 5b520df3 authored by Jaakko Luttinen's avatar Jaakko Luttinen
Browse files

nixos/jupyter: add env kernel option

parent ba187fbd
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -40,6 +40,15 @@ with lib;
      '';
    };

    env = mkOption {
      type = types.attrsOf types.str;
      default = { };
      example = { OMP_NUM_THREADS = "1"; };
      description = lib.mdDoc ''
        Environment variables to set for the kernel.
      '';
    };

    logo32 = mkOption {
      type = types.nullOr types.path;
      default = null;