dotfiles/common/programs/wireshark.nix
2024-10-02 16:36:52 -04:00

16 lines
213 B
Nix

{ NAME }: { ... }: {
programs = {
wireshark = {
enable = true;
};
};
users = {
users = {
"${NAME}" = {
extraGroups = [
"wireshark"
];
};
};
};
}