Add wireshark

This commit is contained in:
jalr 2021-12-28 02:48:44 +00:00 committed by Jakob Lechner
parent ff9d707d96
commit 9b1c098a82
2 changed files with 8 additions and 0 deletions

View file

@ -25,5 +25,6 @@
./sway.nix
./tradebyte
./udmx.nix
./wireshark.nix
];
}

7
modules/wireshark.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
lib.mkIf config.myConfig.gui.enable {
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
}