02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
31 lines
720 B
Nix
31 lines
720 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.programs.bandwhich;
|
|
in {
|
|
meta.maintainers = with maintainers; [ Br1ght0ne ];
|
|
|
|
options = {
|
|
programs.bandwhich = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to add bandwhich to the global environment and configure a
|
|
setcap wrapper for it.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ bandwhich ];
|
|
security.wrappers.bandwhich = {
|
|
owner = "root";
|
|
group = "root";
|
|
capabilities = "cap_net_raw,cap_net_admin+ep";
|
|
source = "${pkgs.bandwhich}/bin/bandwhich";
|
|
};
|
|
};
|
|
}
|