diff --git a/applications/graphical/network.nix b/applications/graphical/network.nix index 15969e0..80cedb2 100644 --- a/applications/graphical/network.nix +++ b/applications/graphical/network.nix @@ -9,9 +9,13 @@ in mkIf (true && flags.graphical) { + # Diagnostic réseau Wireshark (droits fins par le groupe wireshark) + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + }; + # Paquets environment.systemPackages = with pkgs; [ - ## Diagnostic - wireshark ]; }