From 17b0f68d59bd8401a56adc173b6bc08b0a1e63b1 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 8 Aug 2025 21:04:02 -0700 Subject: [PATCH] Remove unused iftop dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The network throughput implementation uses /proc/net/dev parsing instead of iftop, so the iftop dependency is not needed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- flake.nix | 3 --- nix/package.nix | 4 ---- 2 files changed, 7 deletions(-) diff --git a/flake.nix b/flake.nix index 3fa0155..f6a4e5d 100644 --- a/flake.nix +++ b/flake.nix @@ -43,9 +43,6 @@ # Mosquito for MQTT support mosquitto - - # Network monitoring - iftop ]; shellHook = '' diff --git a/nix/package.nix b/nix/package.nix index f665be1..e68690c 100644 --- a/nix/package.nix +++ b/nix/package.nix @@ -2,7 +2,6 @@ lib, beamPackages, src, - iftop, }: beamPackages.mixRelease rec { @@ -11,9 +10,6 @@ beamPackages.mixRelease rec { inherit src; - # Runtime dependencies - buildInputs = [ iftop ]; - # Disable distributed Erlang to avoid COOKIE requirement postInstall = '' # Create wrapper script that sets proper environment including COOKIE