summary refs log tree commit diff
path: root/nixos/modules/services/network-filesystems/ipfs.nix
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-09-09 00:00:29 +0900
committerRaphael Megzari <raphael@megzari.com>2021-09-10 09:39:55 +0900
commit6a51087bba98e15ebae11c7e32b72f1eaffa6458 (patch)
tree9aa891e17f93bcf1fa88ae0292d2537fd237e947 /nixos/modules/services/network-filesystems/ipfs.nix
parentd42b3dbc05d0e7657b6e923b4520143f81529922 (diff)
downloadnixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar.gz
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar.bz2
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar.lz
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar.xz
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.tar.zst
nixpkgs-6a51087bba98e15ebae11c7e32b72f1eaffa6458.zip
ipfs: default to not listen on the local network
Diffstat (limited to 'nixos/modules/services/network-filesystems/ipfs.nix')
-rw-r--r--nixos/modules/services/network-filesystems/ipfs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/network-filesystems/ipfs.nix b/nixos/modules/services/network-filesystems/ipfs.nix
index 57f5f6b006c..cb6e8278b11 100644
--- a/nixos/modules/services/network-filesystems/ipfs.nix
+++ b/nixos/modules/services/network-filesystems/ipfs.nix
@@ -173,7 +173,7 @@ in
         description = ''Whether to enable local discovery for the ipfs daemon.
           This will allow ipfs to scan ports on your local network. Some hosting services will ban you if you do this.
         '';
-        default = true;
+        default = false;
       };
 
       serviceFdlimit = mkOption {