aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2014-09-16Style tweakEelco Dolstra
2014-09-16Fix parallel make of manpagesEelco Dolstra
2014-09-16Fix references to version.txtEelco Dolstra
2014-09-16Drop separate release notesEelco Dolstra
2014-09-16Undocument NIX_OTHER_STORESEelco Dolstra
2014-09-16Tweak some chapter titlesEelco Dolstra
2014-09-16Drop "service deployment" bla blaEelco Dolstra
2014-09-16Drop reference to FreeBSDEelco Dolstra
2014-09-16Remove pointless "license" sectionEelco Dolstra
2014-09-16Release notes: Use a section per versionEelco Dolstra
2014-09-16Nicer file names for the release notesEelco Dolstra
2014-09-16Manual build fixesEelco Dolstra
2014-09-16Merge branch 'master' of github.com:thatdocslady/nixEelco Dolstra
Conflicts: doc/manual/release-notes.xml doc/manual/writing-nix-expressions.xml
2014-09-16Add some hyperlinks between NIXPATH and -IEelco Dolstra
2014-08-28allowedRequisites: Drop stdenv mentionEelco Dolstra
I don't think it's a good idea to use allowedRequisites for stdenv, so don't mention it here.
2014-08-28Fix manual buildEelco Dolstra
2014-08-28Introduce allowedRequisites featureGergely Risko
2014-08-27Restructuring the Nix manualMikey Ariel
2014-08-23Document the "out" usage in allowedReferencesGergely Risko
2014-08-13Remove pointless NIX_LOG_TYPE environment variableEelco Dolstra
2014-08-04Update manualEelco Dolstra
2014-07-24nix-copy-closure: Drop --bzip2, --xz, --show-progressEelco Dolstra
These are too difficult to implement via nix-store --serve. ‘--show-progress’ could be re-implemented fairly easily via a sink/source wrapper class.
2014-07-18BumpEelco Dolstra
2014-07-17nix-daemon: Add trusted-users and allowed-users optionsEelco Dolstra
‘trusted-users’ is a list of users and groups that have elevated rights, such as the ability to specify binary caches. It defaults to ‘root’. A typical value would be ‘@wheel’ to specify all users in the wheel group. ‘allowed-users’ is a list of users and groups that are allowed to connect to the daemon. It defaults to ‘*’. A typical value would be ‘@users’ to specify the ‘users’ group.
2014-07-16Manual: TypoEelco Dolstra
2014-07-04Add builtin function ‘fromJSON’Eelco Dolstra
Fixes #294.
2014-07-03Manual: html -> xhtmlEelco Dolstra
2014-06-27Add `--json` argument to `nix-instantiate`Paul Colomiets
2014-05-26Rephrase @ operator descriptionAdam Szkoda
2014-05-21nix-store -l: Fetch build logs from the InternetEelco Dolstra
If a build log is not available locally, then ‘nix-store -l’ will now try to download it from the servers listed in the ‘log-servers’ option in nix.conf. For instance, if you have: log-servers = http://hydra.nixos.org/log then it will try to get logs from http://hydra.nixos.org/log/<base name of the store path>. So you can do things like: $ nix-store -l $(which xterm) and get a log even if xterm wasn't built locally.
2014-05-13fix typoCharles Strahan
2014-05-02Simplify multi-user installation instructionsEelco Dolstra
2014-04-28doc fix: swap 'import' and 'export'Charles Strahan
2014-04-25trunk -> masterEelco Dolstra
2014-04-15nix-env: Minor change to '--delete-generations Nd' semanticsRicardo M. Correia
The option '--delete-generations Nd' deletes all generations older than N days. However, most likely the user does not want to delete the generation that was active N days ago. For example, say that you have these 3 generations: 1: <30 days ago> 2: <15 days ago> 3: <1 hour ago> If you do --delete-generations 7d (say, as part of a cron job), most likely you still want to keep generation 2, i.e. the generation that was active 7 days ago (and for most of the past 7 days, in fact). This patch fixes this issue. Note that this also affects 'nix-collect-garbage --delete-older-than Nd'. Thanks to @roconnor for noticing the issue!
2014-04-11Bump dateEelco Dolstra
2014-04-10Don't barf when installing as rootEelco Dolstra
2014-04-09Add docbook icons to the distributionEelco Dolstra
Grmbl...
2014-04-08Simplify quick start sectionEelco Dolstra
2014-04-08Remove redundant stuffEelco Dolstra
2014-04-08Update installation instructionsEelco Dolstra
2014-04-07Update release notesEelco Dolstra
2014-04-04Update release notesEelco Dolstra
2014-04-04Document that we require a C++11 compilerEelco Dolstra
2014-03-30nix-collect-garbage: Add --delete-older-than optionRicardo M. Correia
2014-03-30nix-env: Add support for --delete-generations 15dRicardo M. Correia
It will delete all generations older than the specified number of days.
2014-03-12Document nix-env -q --jsonEelco Dolstra
2014-03-12Generate release notes againEelco Dolstra
2014-03-12Update release notes for 1.7Eelco Dolstra
2014-03-11Fix typosEelco Dolstra