mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
fedd7cd690
This is slightly more verbose and inconvenient, but it forces you to think about what the wrapper ownership and permissions will be.
25 lines
522 B
Nix
25 lines
522 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.liboping;
|
|
in {
|
|
options.programs.liboping = {
|
|
enable = mkEnableOption "liboping";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ liboping ];
|
|
security.wrappers = mkMerge (map (
|
|
exec: {
|
|
"${exec}" = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_net_raw+p";
|
|
source = "${pkgs.liboping}/bin/${exec}";
|
|
};
|
|
}
|
|
) [ "oping" "noping" ]);
|
|
};
|
|
}
|