Files
dotfiles/nixos/ryu/programs/wireshark.nix
servius b10e5253f8
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m27s
feat: Update all flakes
2026-03-01 20:31:34 +05:30

12 lines
167 B
Nix

{
pkgs,
device,
...
}: {
programs.wireshark = {
enable = true;
dumpcap.enable = true;
};
users.users.${device.user}.extraGroups = ["wireshark"];
}