mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
19 lines
372 B
Nix
19 lines
372 B
Nix
|
{ 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 = {
|
||
|
source = "${pkgs.iftop}/bin/iftop";
|
||
|
capabilities = "cap_net_raw+p";
|
||
|
};
|
||
|
};
|
||
|
}
|