diff options
author | lassulus <lassulus@lassul.us> | 2019-03-22 07:56:13 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-03-22 07:56:13 +0100 |
commit | 9a58e882acf7268ba28eeb6e6d5a174342f018f5 (patch) | |
tree | 6d9accfcf12272fa7c0e6fc93fc29c4601c70246 /lib/types.nix | |
parent | d9920bc3c3f4fc79ff67a157e376bd92c12a2a66 (diff) |
types host: add syncthing.id
Diffstat (limited to 'lib/types.nix')
-rw-r--r-- | lib/types.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix index 45c009893..9001bc7c3 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; + }; }; }); |