blob: 61de1aa3cdfb351f6bcc04cb034997c2b798909e (
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
|
{ 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" ];
default = "launcher";
};
command = mkOption {
type = types.str;
};
environment = mkOption {
type = types.package;
};
};
});
};
pkgs = mkOption {
type = types.attrs;
};
};
}
|