mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
19 lines
349 B
Nix
19 lines
349 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.programs.cnping;
|
|
in
|
|
{
|
|
options = {
|
|
programs.cnping = {
|
|
enable = lib.mkEnableOption "a setcap wrapper for cnping";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
security.wrappers.cnping = {
|
|
source = "${pkgs.cnping}/bin/cnping";
|
|
capabilities = "cap_net_raw+ep";
|
|
};
|
|
};
|
|
}
|