13 lines
288 B
Nix
13 lines
288 B
Nix
|
{ lib, victoriametrics }:
|
||
|
lib.addMetaAttrs { mainProgram = "vmagent"; } (
|
||
|
victoriametrics.override {
|
||
|
withServer = false;
|
||
|
withVictoriaLogs = false;
|
||
|
withVmAlert = false;
|
||
|
withVmAuth = false;
|
||
|
withBackupTools = false;
|
||
|
withVmctl = false;
|
||
|
withVmAgent = true;
|
||
|
}
|
||
|
)
|