wireshark no-root group setup

This commit is contained in:
Trolli Schmittlauch 2018-11-11 13:23:57 +01:00
parent 2141bb60ba
commit 1fcfd62887
2 changed files with 11 additions and 0 deletions

View file

@ -134,6 +134,15 @@ in {
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
# wireshark noroot gropu
users.groups.wireshark.gid = 500;
security.wrappers.dumpcap = {
source = "${pkgs.wireshark}/bin/dumpcap";
permissions = "u+xs,g+x";
owner = "root";
group = "wireshark";
};
programs.zsh = programs.zsh =
{ enable = true; { enable = true;
autosuggestions.enable = true; autosuggestions.enable = true;

View file

@ -36,6 +36,8 @@
networkmanager-openconnect networkmanager-openconnect
networkmanager-vpnc networkmanager-vpnc
kdeApplications.akonadi-mime # for KOrganizer kdeApplications.akonadi-mime # for KOrganizer
wireshark
]; ];
} }