Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
22 lines
462 B
Nix
22 lines
462 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" ];
|
|
};
|
|
}
|