os/modules/wireshark/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
234 B
Nix
Raw Normal View History

2023-11-08 17:52:09 +00:00
{
config,
pkgs,
lib,
flake,
...
}: let
psCfg = config.pub-solar;
in {
programs.wireshark.enable = true;
users.users."${psCfg.user.name}" = {
extraGroups = ["wireshark"];
packages = [ pkgs.wireshark ];
};
}