niksos/options/desktop/wireshark.nix

15 lines
233 B
Nix
Raw Normal View History

2024-06-04 12:26:27 +02:00
{
config,
pkgs,
...
}: {
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
2024-07-15 23:18:25 +02:00
users.users.${config.poz.other.system.username} = {
2024-06-04 12:26:27 +02:00
extraGroups = [ "wireshark" ];
};
}