diff options
author | makefu <github@syntax-fehler.de> | 2017-09-04 09:05:06 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-09-04 09:05:06 +0200 |
commit | 729549d15464e57e41fd143450c36274cedc84fa (patch) | |
tree | c28cfa3576c601f7f665cebc7721ef3a08311792 /lib | |
parent | 848acb85ccecbe25987bf6da45a96fc4eaaa74e9 (diff) | |
parent | fcf59a00e2ab675cb171cbe4f21b8df73836d144 (diff) |
Merge remote-tracking branch 'lass/master'
Diffstat (limited to 'lib')
-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 8c6846887..70570a6b3 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; |