2018-04-07 13:06:51 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.iftop;
|
|
|
|
in {
|
|
|
|
options = {
|
2024-04-17 11:37:58 +00:00
|
|
|
programs.iftop.enable = lib.mkEnableOption "iftop + setcap wrapper";
|
2018-04-07 13:06:51 +00:00
|
|
|
};
|
2024-04-17 11:37:58 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2018-04-07 13:06:51 +00:00
|
|
|
environment.systemPackages = [ pkgs.iftop ];
|
|
|
|
security.wrappers.iftop = {
|
2021-09-12 16:53:48 +00:00
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
2018-04-07 13:06:51 +00:00
|
|
|
capabilities = "cap_net_raw+p";
|
2021-09-12 16:53:48 +00:00
|
|
|
source = "${pkgs.iftop}/bin/iftop";
|
2018-04-07 13:06:51 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|