From 0699fb386ef049366a65c191f8f462ecbbd1c085 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:47:18 +0400 Subject: [PATCH] sigma --- modules/desktop/security/wireshark/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/desktop/security/wireshark/default.nix b/modules/desktop/security/wireshark/default.nix index ddbfbeb2..f1e62168 100644 --- a/modules/desktop/security/wireshark/default.nix +++ b/modules/desktop/security/wireshark/default.nix @@ -14,6 +14,9 @@ in { }; config = lib.mkIf cfg.enable { - programs.wireshark.enable = true; + programs.wireshark = { + enable = true; + package = pkgs.wireshark; + }; }; }