2025-07-09 12:15:45 +08:00
|
|
|
{
|
2023-06-26 19:41:28 +02:00
|
|
|
name = "scaphandre";
|
|
|
|
|
2025-07-09 12:15:45 +08:00
|
|
|
nodes.scaphandre =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
boot.kernelModules = [ "intel_rapl_common" ];
|
2023-06-26 19:41:28 +02:00
|
|
|
|
2025-07-09 12:15:45 +08:00
|
|
|
environment.systemPackages = [ pkgs.scaphandre ];
|
|
|
|
};
|
2023-06-26 19:41:28 +02:00
|
|
|
|
2025-07-09 12:15:45 +08:00
|
|
|
testScript = ''
|
|
|
|
scaphandre.start()
|
|
|
|
scaphandre.wait_until_succeeds(
|
|
|
|
"scaphandre stdout -t 4",
|
|
|
|
)
|
|
|
|
'';
|
2023-06-26 19:41:28 +02:00
|
|
|
}
|