From cb0b0190cb918bfc9701d9e9d4c80aff7996432b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 14 Apr 2016 17:44:02 +0300 Subject: [PATCH] syncthing service: fix mkEnableOption call --- nixos/modules/services/networking/syncthing.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix index a52f78cab266..514c17c6e5d2 100644 --- a/nixos/modules/services/networking/syncthing.nix +++ b/nixos/modules/services/networking/syncthing.nix @@ -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;