ma tools: use wireshark from options

This commit is contained in:
makefu 2017-10-03 15:43:46 +02:00
parent 68ac0650a2
commit bc8ab5ca56

View file

@ -1,8 +1,15 @@
{ pkgs, ... }:
{
krebs.per-user.makefu.packages = with pkgs; [
tpmmanager
wireshark
];
users.users.makefu = {
extraGroups = [ "wireshark" ];
packages = with pkgs; [
tpmmanager
];
};
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
}