Storage optimization: Difference between revisions

Himura (talk | contribs)
revert changes (apparently, min-free/max-free id deprecated)
Himura (talk | contribs)
m really sorry for such a messy edits, I wish this wiki to be in git, so that I can edit through merge requests, not directly...
Tags: Manual revert Visual edit
 
Line 150: Line 150:
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
nix.extraOptions = ''
nix.extraOptions = ''
  min-free = ${toString (100 * 1024 * 1024)}
  min-free = ${toString (100 * 1024 * 1024)}
  max-free = ${toString (1024 * 1024 * 1024)}
  max-free = ${toString (1024 * 1024 * 1024)}
'';
'';
</syntaxhighlight>
</syntaxhighlight>