2020-04-24 23:36:52 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.iftop;
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
programs.iftop.enable = mkEnableOption "iftop + setcap wrapper";
|
|
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ pkgs.iftop ];
|
|
|
|
security.wrappers.iftop = {
|
2021-09-22 15:38:15 +00:00
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
2020-04-24 23:36:52 +00:00
|
|
|
capabilities = "cap_net_raw+p";
|
2021-09-22 15:38:15 +00:00
|
|
|
source = "${pkgs.iftop}/bin/iftop";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|