···11# Options that can be used for creating a jupyter kernel.
22-{lib }:
22+{ lib }:
3344with lib;
55···3737 example = "python";
3838 description = lib.mdDoc ''
3939 Language of the environment. Typically the name of the binary.
4040+ '';
4141+ };
4242+4343+ env = mkOption {
4444+ type = types.attrsOf types.str;
4545+ default = { };
4646+ example = { OMP_NUM_THREADS = "1"; };
4747+ description = lib.mdDoc ''
4848+ Environment variables to set for the kernel.
4049 '';
4150 };
4251