From 436ca6d2f146cbb4080b5bbd0cd7dcac097b703c Mon Sep 17 00:00:00 2001 From: Morgan Jones Date: Sat, 25 Oct 2025 17:29:59 -0700 Subject: [PATCH] tests/kismet: add nettools to environment --- nixos/tests/kismet.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nixos/tests/kismet.nix b/nixos/tests/kismet.nix index 878a341cedea..b4f2aac21184 100644 --- a/nixos/tests/kismet.nix +++ b/nixos/tests/kismet.nix @@ -69,7 +69,7 @@ in }; station = - { config, ... }: + { config, pkgs, ... }: { networking.interfaces.eth1.ipv4.addresses = lib.mkForce [ { @@ -98,10 +98,11 @@ in inherit serverAddress; }; }; + environment.systemPackages = [ pkgs.nettools ]; }; monitor = - { config, ... }: + { config, pkgs, ... }: { networking.interfaces.eth1.ipv4.addresses = lib.mkForce [ { @@ -189,10 +190,10 @@ in }; }; - environment.systemPackages = with pkgs; [ + environment.systemPackages = [ config.services.kismet.package config.services.vwifi.package - jq + pkgs.jq ]; }; };