diff options
author | tv <tv@krebsco.de> | 2017-08-31 20:05:05 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-08-31 20:05:05 +0200 |
commit | 06491f2d72ad1a68fd8727dfff3dd5ea9c33128f (patch) | |
tree | 602af4f43fa9ed367f32c5d260536e27256553d6 | |
parent | ab60effe5c8f50f499d82502a2cb652318af0c67 (diff) | |
parent | faa1141f3e5add73de6705849eaccbb59b547106 (diff) |
Merge derp
-rw-r--r-- | lib/types.nix | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/lib/types.nix b/lib/types.nix index 8c68468..70570a6 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -31,9 +31,20 @@ rec { default = null; }; - managed = mkOption { + ci = mkOption { description = '' - If true, then the host's configuration is defined in stockholm. + If true, then the host wants to be tested by some CI system. + See <stockholm/krebs/2configs/buildbot-all.nix> + ''; + type = bool; + default = false; + }; + + external = mkOption { + description = '' + Whether the host is defined externally (in contrast to being defined + in <stockholm>). This is useful e.g. when legacy and/or adopted + hosts should be part of retiolum or some other component. ''; type = bool; default = false; |