From cd722cac1ac974c7327e0b0b22f706868c89ddb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20D=2E=20Mih=C4=83il=C4=83?= Date: Wed, 7 Aug 2019 14:52:34 +0200 Subject: [PATCH] Fix identation --- modules/nix-bitcoin-services.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/nix-bitcoin-services.nix b/modules/nix-bitcoin-services.nix index 9ca97b9..12132f3 100644 --- a/modules/nix-bitcoin-services.nix +++ b/modules/nix-bitcoin-services.nix @@ -32,14 +32,14 @@ in # Allow any traffic allowAnyIP = { IPAddressAllow = "any"; }; - enforceTor = mkOption { - type = types.bool; - default = false; - description = '' - "Whether to force Tor on a service by only allowing connections from and - to 127.0.0.1;"; - ''; - }; + enforceTor = mkOption { + type = types.bool; + default = false; + description = '' + "Whether to force Tor on a service by only allowing connections from and + to 127.0.0.1;"; + ''; + }; }