blob: e489fea426de0d85aa9138726b5996884c54c26d (
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
|
{ pkgs, ... }:
let
mkOption = pkgs.lib.mkOption;
types = pkgs.lib.types;
in {
options.custom = {
hidpi = mkOption {
type = types.bool;
description = "Configure UI for high DPI displays";
};
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" ];
default = "launcher";
};
command = mkOption {
type = types.str;
};
environment = mkOption {
type = types.package;
};
};
});
};
pkgs = mkOption {
type = types.attrs;
};
nixpkgs-unstable = mkOption {
type = types.attrs;
};
};
}
|