aboutsummaryrefslogtreecommitdiff
path: root/custom.nix
blob: fc4d5df7bf827307e7f1d39775143a8b531971e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ pkgs, ... }:

let
  mkOption = pkgs.lib.mkOption;
  types = pkgs.lib.types;

in {
  options.custom = {
    tasks = mkOption {
      type = types.attrsOf (types.submodule {
        options = {
          description = mkOption {
            type = types.uniq types.string;
          };
          directory = mkOption {
            type = types.str;
            default = "~/";
          };
          type = mkOption {
            type = types.enum [ "launcher" "terminal" "local-shell" "local-editor" "environment" "python-console" "jupyter-lab" ];
            default = "launcher";
          };
          command = mkOption {
            type = types.str;
          };
          environment = mkOption {
            type = types.package;
          };
        };
      });
    };

    notebooks = mkOption {
      type = types.attrsOf (types.submodule {
        options = {
          description = mkOption {
            type = types.uniq types.string;
          };
          environment = mkOption {
            type = types.package;
          };
        };
      });
    };
  };
}