All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s
12 lines
167 B
Nix
12 lines
167 B
Nix
{
|
|
pkgs,
|
|
device,
|
|
...
|
|
}: {
|
|
programs.wireshark = {
|
|
enable = true;
|
|
dumpcap.enable = true;
|
|
};
|
|
users.users.${device.user}.extraGroups = ["wireshark"];
|
|
}
|