niksos/options/desktop/wireshark.nix

15 lines
239 B
Nix
Raw Normal View History

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