bordervm: build wireshark without qt

(we only want tshark anyway)
pull/2/head
Daniel Barlow 2024-01-03 17:02:31 +00:00
parent dad7c2c875
commit d2e29543e2
1 changed files with 10 additions and 8 deletions

View File

@ -99,14 +99,16 @@ in {
}; };
}; };
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages =
tcpdump let wireshark-nogui = pkgs.wireshark.override { withQt = false ; };
wireshark in with pkgs; [
socat tcpdump
tufted wireshark-nogui
iptables socat
usbutils tufted
]; iptables
usbutils
];
security.sudo.wheelNeedsPassword = false; security.sudo.wheelNeedsPassword = false;
networking = { networking = {
hostName = "border"; hostName = "border";