nixos/ipfs: add QUIC transport to swarmAddress list

According to https://github.com/ipfs/go-ipfs/blob/master/docs/config.md#addressesswarm, the default list of swarm multiaddrs now includes the QUIC transport.
gstqt5
Luflosi 2020-08-08 21:45:57 +02:00
parent b01106127c
commit 4d9dec0aba
No known key found for this signature in database
GPG Key ID: 4E41E29EDCC345D0
1 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,8 @@ in {
default = [
"/ip4/0.0.0.0/tcp/4001"
"/ip6/::/tcp/4001"
"/ip4/0.0.0.0/udp/4001/quic"
"/ip6/::/udp/4001/quic"
];
description = "Where IPFS listens for incoming p2p connections";
};