Commit 31c4498a authored by Kirill's avatar Kirill
Browse files

Fix indentation. Fix openPorts option default to false.

parent 7a6738fe
Loading
Loading
Loading
Loading
+22 −24
Original line number Diff line number Diff line
@@ -40,11 +40,10 @@ in
      };
      openPorts = mkOption {
        type = types.bool;
        default = true;
        default = false;
        description = ''
          Open the ports in the firewall. Defaults are:
          - UDP 6881-6999 for transfers
          - TCP 6800 for RPC
          Open listen and RPC ports found in listenPortRange and rpcListenPort
          options in the firewall.
        '';
      };
      downloadDir = mkOption {
@@ -76,7 +75,7 @@ in
      };
      extraArguments = mkOption {
        type = types.string;
        example = "--rpc-secret=12345 --enable-rpc --rpc-listen-all";
        example = "--rpc-listen-all --remote-time=true";
        default = "";
        description = ''
          Additional arguments to be passed to Aria2.
@@ -134,4 +133,3 @@ in
    };
  };
}
 No newline at end of file
+2 −2

File changed.

Contains only whitespace changes.