19 lines
374 B
Nix
19 lines
374 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.programs.iotop;
|
||
|
in {
|
||
|
options = {
|
||
|
programs.iotop.enable = mkEnableOption "iotop + setcap wrapper";
|
||
|
};
|
||
|
config = mkIf cfg.enable {
|
||
|
environment.systemPackages = [ pkgs.iotop ];
|
||
|
security.wrappers.iotop = {
|
||
|
source = "${pkgs.iotop}/bin/iotop";
|
||
|
capabilities = "cap_net_admin+p";
|
||
|
};
|
||
|
};
|
||
|
}
|