1
0
Fork 0

hosts/astatine: enable remote wireshark capture

This commit is contained in:
clerie 2024-01-30 11:40:28 +01:00
parent 70a663b633
commit 991b4d6bd1
2 changed files with 10 additions and 0 deletions

View File

@ -6,6 +6,7 @@
./hardware-configuration.nix
./ppp.nix
./programs.nix
./users.nix
];

View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tcpdump # for remote wireshark
];
}