summaryrefslogtreecommitdiffstats
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
commitf0c85f305f662b96033dbbe896e399e5a58a28dd (patch)
treef873cece2884701188baacd732149ce31eb50f6e
parent8381844a919e17fed6a2393d34cabdf2f441d6ea (diff)
types.syncthing.id: string -> str
-rw-r--r--lib/types.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/types.nix b/lib/types.nix
index 9001bc7..23919af 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;
};
};