Remove unused iftop dependency

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 <noreply@anthropic.com>
This commit is contained in:
ryan 2025-08-08 21:04:02 -07:00
parent b8e7c48ecf
commit 17b0f68d59
2 changed files with 0 additions and 7 deletions

View File

@ -43,9 +43,6 @@
# Mosquito for MQTT support # Mosquito for MQTT support
mosquitto mosquitto
# Network monitoring
iftop
]; ];
shellHook = '' shellHook = ''

View File

@ -2,7 +2,6 @@
lib, lib,
beamPackages, beamPackages,
src, src,
iftop,
}: }:
beamPackages.mixRelease rec { beamPackages.mixRelease rec {
@ -11,9 +10,6 @@ beamPackages.mixRelease rec {
inherit src; inherit src;
# Runtime dependencies
buildInputs = [ iftop ];
# Disable distributed Erlang to avoid COOKIE requirement # Disable distributed Erlang to avoid COOKIE requirement
postInstall = '' postInstall = ''
# Create wrapper script that sets proper environment including COOKIE # Create wrapper script that sets proper environment including COOKIE