From 6ac5746d75d5cd856914135d76ca8be868d01ad5 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner <contact@ingolf-wagner.de> Date: Thu, 17 Apr 2025 12:21:01 +0200 Subject: [PATCH] :bug: fix download buffer settings --- machines/orbi/configuration.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/machines/orbi/configuration.nix b/machines/orbi/configuration.nix index 3e30f1c..a4e6110 100644 --- a/machines/orbi/configuration.nix +++ b/machines/orbi/configuration.nix @@ -44,14 +44,15 @@ ]; + # to fix https://github.com/NixOS/nix/issues/11728 + nix.settings.download-buffer-size = 524288000; + networking.firewall.enable = true; networking.firewall.extraCommands = '' iptables -P FORWARD DROP ''; boot.kernel.sysctl."net.ipv4.ip_forwarding" = false; - services.logrotate.checkConfig = false; # because uid 3000 does not exist in here - networking.hostName = "orbi"; components.terminal.enable = true;