ma tools: use wireshark from options

This commit is contained in:
makefu 2017-10-03 15:43:46 +02:00
parent 6513f6a823
commit d5cd048bc3
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

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;
};
}