1{ lib, pkgs, ... }:
2{
3
4 name = "bpftune";
5
6 meta = {
7 maintainers = with lib.maintainers; [ nickcao ];
8 };
9
10 nodes = {
11 machine =
12 { pkgs, ... }:
13 {
14 services.bpftune.enable = true;
15 };
16 };
17
18 testScript = ''
19 machine.wait_for_unit("bpftune.service")
20 machine.wait_for_console_text("bpftune works")
21 '';
22
23}