nixpkgs/nixos/modules/programs/nexttrace.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
576 B
Nix
Raw Normal View History

2023-03-08 03:21:06 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.nexttrace;
in
{
options = {
programs.nexttrace = {
enable = lib.mkEnableOption "Nexttrace to the global environment and configure a setcap wrapper for it";
package = lib.mkPackageOption pkgs "nexttrace" { };
2023-03-08 03:21:06 +00:00
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
security.wrappers.nexttrace = {
owner = "root";
group = "root";
capabilities = "cap_net_raw,cap_net_admin+eip";
source = "${cfg.package}/bin/nexttrace";
};
};
}