+2
-2
nix/modules/knot.nix
+2
-2
nix/modules/knot.nix
···
22
23
appviewEndpoint = mkOption {
24
type = types.str;
25
-
default = "https://tangled.sh";
26
description = "Appview endpoint";
27
};
28
···
107
108
hostname = mkOption {
109
type = types.str;
110
-
example = "knot.tangled.sh";
111
description = "Hostname for the server (required)";
112
};
113
+2
-2
nix/modules/spindle.nix
+2
-2
nix/modules/spindle.nix
···
33
34
hostname = mkOption {
35
type = types.str;
36
-
example = "spindle.tangled.sh";
37
description = "Hostname for the server (required)";
38
};
39
···
92
pipelines = {
93
nixery = mkOption {
94
type = types.str;
95
-
default = "nixery.tangled.sh";
96
description = "Nixery instance to use";
97
};
98
···
33
34
hostname = mkOption {
35
type = types.str;
36
+
example = "my.spindle.com";
37
description = "Hostname for the server (required)";
38
};
39
···
92
pipelines = {
93
nixery = mkOption {
94
type = types.str;
95
+
default = "nixery.tangled.sh"; # note: this is *not* on tangled.org yet
96
description = "Nixery instance to use";
97
};
98