 6a0d2ff7c1
			
		
	
	
		6a0d2ff7c1
		
			
		
	
	
	
	
		
			
			The binary will be in `/run/wrappers/bin` and adding `pkgs.iotop` won't have any effect. See also https://github.com/NixOS/nixpkgs/pull/51749#discussion_r254724170
		
			
				
	
	
		
			18 lines
		
	
	
		
			325 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			325 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 {
 | |
|     security.wrappers.iotop = {
 | |
|       source = "${pkgs.iotop}/bin/iotop";
 | |
|       capabilities = "cap_net_admin+p";
 | |
|     };
 | |
|   };
 | |
| }
 |