mirror of
https://code.dumpstack.io/tools/appvm.git
synced 2024-11-30 12:01:29 +00:00
Memory autoballoon (host side)
This commit is contained in:
parent
573be66059
commit
806448df17
|
@ -44,7 +44,21 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO run ${appvm}/bin/appvm autoballoon each second
|
systemd.user.services."autoballoon" = {
|
||||||
|
serviceConfig.StartLimitBurst = 64;
|
||||||
|
script = "${appvm}/bin/appvm autoballoon";
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.user.timers."autoballoon" = {
|
||||||
|
description = "Autoupdate resolution crutch";
|
||||||
|
timerConfig = {
|
||||||
|
OnBootSec = "1s";
|
||||||
|
OnUnitInactiveSec = "1s";
|
||||||
|
Unit = "autoballoon.service";
|
||||||
|
AccuracySec = "1us";
|
||||||
|
};
|
||||||
|
wantedBy = ["timers.target"];
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
appvm virtmanager chromium
|
appvm virtmanager chromium
|
||||||
|
|
Loading…
Reference in a new issue