adjust hydra-gc numbers

we want to see how garbage collection would behave on a 480GB drive
This commit is contained in:
Yureka 2024-07-31 23:44:08 +02:00
parent 96d58bbd41
commit 504a443acc
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@
bagel.services.buildbot = { bagel.services.buildbot = {
enable = true; enable = true;
domain = "buildbot.forkos.org"; domain = "buildbot.forkos.org";
builders = [ "builder-3" ]; builders = [ "builder-11" ];
}; };
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";

View file

@ -156,8 +156,8 @@ in
script = '' script = ''
while : ; do while : ; do
percent_filled=$(($(stat -f --format="100-(100*%a/%b)" /mnt))) percent_filled=$(($(stat -f --format="100-(100*%a/%b)" /mnt)))
if [ "$percent_filled" -gt "85" ]; then if [ "$percent_filled" -gt "54" ]; then
${config.nix.package.out}/bin/nix-store --gc --max-freed 100G --store /mnt ${config.nix.package.out}/bin/nix-store --gc --max-freed 50G --store /mnt
else else
break break
fi fi