10 lines
106 B
Nix
10 lines
106 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
tcpdump # for remote wireshark
|
|
];
|
|
|
|
}
|