about summary refs log tree commit diff
path: root/nix.conf.example (follow)
AgeCommit message (Collapse)AuthorFilesLines
2006-12-08 * Kill a build if it has gone for more than a certain number ofEelco Dolstra1-0/+17
seconds without producing output on stdout or stderr (NIX-65). This timeout can be specified using the `--max-silent-time' option or the `build-max-silent-time' configuration setting. The default is infinity (0). * Fix a tricky race condition: if we kill the build user before the child has done its setuid() to the build user uid, then it won't be killed, and we'll potentially lock up in pid.wait(). So also send a conventional kill to the child.
2006-12-06 * Urgh.Eelco Dolstra1-1/+1
2006-12-06 * Oops.Eelco Dolstra1-1/+1
2006-12-06 * Get rid of `build-users'. We'll just take all the members ofEelco Dolstra1-26/+26
`build-users-group'. This makes configuration easier: you can just add users in /etc/group.
2006-12-03 * Removed `build-allow-root'.Eelco Dolstra1-18/+27
* Added `build-users-group', the group under which builds are to be performed. * Check that /nix/store has 1775 permission and is owner by the build-users-group.
2006-08-10 * New configuration setting `build-max-jobs' which sets the defaultEelco Dolstra1-0/+10
for the `-j' flag (i.e., the maximum number of jobs to execute in parallel). Useful on multi-processor machines.
2006-07-06 * Allow the canonical system name to be specified at runtime in theEelco Dolstra1-0/+20
Nix config file.
2006-02-16 * Allow the size of the GC reserved file to be specified in nix.confEelco Dolstra1-5/+24
through the new `gc-reserved-space' option.
2005-09-22 * Parse multi-valued options.Eelco Dolstra1-1/+1
2005-09-21 * This doesn't parse for now.Eelco Dolstra1-1/+1
2005-09-21 * Configuration options for trusted local builds.Eelco Dolstra1-0/+31
2005-02-14 * Global configuration option `env-keep-derivations' to store pointerEelco Dolstra1-1/+20
to derivations in user environments. Nice for developers (since it prevents build-time-only dependencies from being GC'ed, in conjunction with `gc-keep-outputs'). Turned off by default.
2005-02-01 * Added a global configuration file (/nix/etc/nix/nix.conf). ItEelco Dolstra1-0/+30
contains options for the garbage collector right now, but other stuff can be added here later.