summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2017-08-31 19:45:58 +0200
committerlassulus <lassulus@lassul.us>2017-08-31 19:45:58 +0200
commitbd09ea6e3b0408313fdd2787e557e7e02ab8ff86 (patch)
treea70053d865a12ecd53b2ddc9c3d9a620ececd92e /lib
parentdbc9889f82467b4740b649c4baefc80c352fa2f1 (diff)
types.host: add external bool
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix
index a9563ccc..70570a6b 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -40,6 +40,16 @@ rec {
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;
+ };
+
owner = mkOption {
type = user;
};