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 | 5c67c47fe2614429f7226e9969f7aa007d14aca6 (patch) | |
| tree | 324625c64b0ff5b0d3ad399fef117199c4e94b34 | |
| parent | f3ed721b7edb12a0034d9a5985acd487e9120869 (diff) | |
types host: add syncthing.id
| -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 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; +      };      };    }); | 
