From 59d243bb9d22a65be200e4d295da5a93613feb94 Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Mon, 10 Jun 2019 17:22:56 +0200 Subject: [PATCH] wireshark: package -> option (gestion fine des droits) --- applications/graphical/network.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 ]; }