Files
dotfiles/nixos/ryu/programs/wireshark.nix
servius 74d5ec1426
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat: Added wireshark and refactor ollama modules
2026-01-13 14:11:37 +05:30

15 lines
233 B
Nix

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