summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorlassulus <lassulus@lassul.us>2019-04-13 14:06:36 +0200
committerlassulus <lassulus@lassul.us>2019-04-13 14:06:36 +0200
commitbb2f8b9b920287df33e194a3b62d86669d8e6ddd (patch)
tree97ac64b0ec4a8de6892da9861197fa5fc353c6d9 /lib
parent6c28491768cc6b86c69dd732544a3dbb0801faf4 (diff)
types.syncthing.id: string -> str
Diffstat (limited to 'lib')
-rw-r--r--lib/types.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 9001bc7c..23919af3 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -89,7 +89,7 @@ rec {
syncthing.id = mkOption {
# TODO syncthing id type
- type = nullOr string;
+ type = nullOr str;
default = null;
};
};