2017-02-17 19:14:59 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.mtr;
|
2019-08-05 09:42:17 +00:00
|
|
|
|
2017-02-17 19:14:59 +00:00
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
programs.mtr = {
|
2024-04-17 11:37:58 +00:00
|
|
|
enable = lib.mkOption {
|
|
|
|
type = lib.types.bool;
|
2017-02-17 19:14:59 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to add mtr to the global environment and configure a
|
|
|
|
setcap wrapper for it.
|
|
|
|
'';
|
|
|
|
};
|
2019-08-05 09:42:17 +00:00
|
|
|
|
2024-04-17 11:37:58 +00:00
|
|
|
package = lib.mkPackageOption pkgs "mtr" { };
|
2017-02-17 19:14:59 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-17 11:37:58 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
2019-08-05 09:42:17 +00:00
|
|
|
|
2017-09-14 11:05:11 +00:00
|
|
|
security.wrappers.mtr-packet = {
|
2021-09-12 16:53:48 +00:00
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
2017-02-17 19:14:59 +00:00
|
|
|
capabilities = "cap_net_raw+p";
|
2021-09-12 16:53:48 +00:00
|
|
|
source = "${cfg.package}/bin/mtr-packet";
|
2017-02-17 19:14:59 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|