mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-31 09:33:31 -05:00
16 lines
213 B
Nix
16 lines
213 B
Nix
{ NAME }: { ... }: {
|
|
programs = {
|
|
wireshark = {
|
|
enable = true;
|
|
};
|
|
};
|
|
users = {
|
|
users = {
|
|
"${NAME}" = {
|
|
extraGroups = [
|
|
"wireshark"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|