infra/modules/shared/builder.nix

7 lines
165 B
Nix
Raw Normal View History

2023-09-07 12:47:33 +10:00
{ pkgs, ... }:
{
nix.gc.options = ''
--max-freed "$((50 * 1024**3 - 1024 * $(df -P -k /nix/store | tail -n 1 | ${pkgs.gawk}/bin/awk '{ print $4 }')))"
2023-09-07 12:47:33 +10:00
'';
}