1 { config, lib, pkgs, ... }:
3 cfg = config.services.bpftune;
7 maintainers = with lib.maintainers; [ nickcao ];
12 enable = lib.mkEnableOption "bpftune BPF driven auto-tuning";
14 package = lib.mkPackageOption pkgs "bpftune" { };
18 config = lib.mkIf cfg.enable {
19 systemd.packages = [ cfg.package ];
20 systemd.services.bpftune.wantedBy = [ "multi-user.target" ];