1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

syncthing service: fix mkEnableOption call

This commit is contained in:
Nikolay Amiantov 2016-04-14 17:44:02 +03:00
parent c9f2753c7b
commit cb0b0190cb

View file

@ -32,13 +32,11 @@ in
services.syncthing = {
enable = mkEnableOption {
description = ''
Whether to enable Syncthing - the self-hosted open-source alternative
to Dropbox and Bittorrent Sync. Initial interface will be
available on http://127.0.0.1:8384/.
'';
};
enable = mkEnableOption ''
Syncthing - the self-hosted open-source alternative
to Dropbox and Bittorrent Sync. Initial interface will be
available on http://127.0.0.1:8384/.
'';
systemService = mkOption {
type = types.bool;