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; [
tcpdump
wireshark
socat
tufted
iptables
usbutils
];
environment.systemPackages =
let wireshark-nogui = pkgs.wireshark.override { withQt = false ; };
in with pkgs; [
tcpdump
wireshark-nogui
socat
tufted
iptables
usbutils
];
security.sudo.wheelNeedsPassword = false;
networking = {
hostName = "border";