Files

31 lines
540 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.bpftune;
in
{
meta = {
maintainers = with lib.maintainers; [ nickcao ];
};
options = {
services.bpftune = {
enable = lib.mkEnableOption "bpftune BPF driven auto-tuning";
package = lib.mkPackageOption pkgs "bpftune" { };
};
};
config = lib.mkIf cfg.enable {
systemd.packages = [ cfg.package ];
systemd.services.bpftune = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.kmod ]; # bpftune calls modprobe
};
};
}