dotfiles/common/programs/wireshark.nix

17 lines
213 B
Nix
Raw Normal View History

2024-10-02 16:36:52 -04:00
{ NAME }: { ... }: {
programs = {
wireshark = {
enable = true;
};
};
users = {
users = {
"${NAME}" = {
extraGroups = [
"wireshark"
];
};
};
};
}