summaryrefslogtreecommitdiffstats
path: root/lib/types.nix
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
commit5c67c47fe2614429f7226e9969f7aa007d14aca6 (patch)
tree324625c64b0ff5b0d3ad399fef117199c4e94b34 /lib/types.nix
parentf3ed721b7edb12a0034d9a5985acd487e9120869 (diff)
types host: add syncthing.id
Diffstat (limited to 'lib/types.nix')
-rw-r--r--lib/types.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 45c0098..9001bc7 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;
+ };
};
});