summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-03-22 07:56:13 +0100
committerlassulus <lassulus@lassul.us>2019-03-22 07:56:13 +0100
commit9a58e882acf7268ba28eeb6e6d5a174342f018f5 (patch)
tree6d9accfcf12272fa7c0e6fc93fc29c4601c70246 /lib
parentd9920bc3c3f4fc79ff67a157e376bd92c12a2a66 (diff)
types host: add syncthing.id
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 45c00989..9001bc7c 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -86,6 +86,12 @@ rec {
type = nullOr ssh-privkey;
default = null;
};
+
+ syncthing.id = mkOption {
+ # TODO syncthing id type
+ type = nullOr string;
+ default = null;
+ };
};
});