about summary refs log tree commit diff
path: root/doc (follow)
AgeCommit message (Collapse)AuthorFilesLines
2014-12-10 Update signing.txtroconnor1-2/+2
2014-12-09 Add option to disable binary cache certificate checkingEelco Dolstra1-0/+9
2014-12-09 Use https://cache.nixos.org instead of http://cache.nixos.orgEelco Dolstra4-9/+13
2014-11-25 Intro: Mention binary cachesEelco Dolstra1-3/+10
2014-11-25 Rely on XML catalogs to find the DocBook schemas and stylesheetsEelco Dolstra2-10/+4
2014-11-24 More build-cache-failures -> build-cache-failureEelco Dolstra1-2/+2
2014-11-24 Update installation sectionEelco Dolstra3-17/+18
2014-11-24 Update quick start sectionEelco Dolstra2-22/+81
2014-11-24 Combine introduction / quick start partsEelco Dolstra4-21/+9
2014-11-24 Manual: Bump dateEelco Dolstra1-1/+1
2014-11-24 Don't claim FreeBSD supportEelco Dolstra1-4/+5
2014-11-24 'build-cache-failures' -> 'build-cache-failure' in nix.conf documentation.Rob Vermaas1-1/+1
2014-11-15 Document functorsShea Levy1-0/+18
2014-11-04 TypoEelco Dolstra1-1/+1
2014-10-29 Update release notesEelco Dolstra1-0/+81
2014-10-29 Document some primopsEelco Dolstra1-12/+52
2014-10-27 doc: fixed nix-instantiate --find-filebobvanderlinden1-1/+1
The manual said --file-file, which should be --find-file.
2014-10-14 nix-channel: Add --rollback flagEelco Dolstra1-1/+54
Fixes #368.
2014-10-03 nix-env: Add regular expression support in selectorsEelco Dolstra2-22/+105
So you can now do things like: $ nix-env -qa '.*zip.*' $ nix-env -qa '.*(firefox|chromium).*'
2014-09-24 Remove bash requirementwmertens1-3/+3
As per https://github.com/NixOS/nixos-homepage/pull/16
2014-09-23 Updated documentation for nix-install-package to mention --set flagShell Turner1-0/+8
2014-09-23 add manpage for nix-generate-patchesdarealshinji3-1/+46
2014-09-23 manual: add a note that lists are strict in lengthVladimír Čunát1-1/+4
Close #345.
2014-09-16 Remove unhelpful suggestionEelco Dolstra1-6/+1
2014-09-16 Delete bugs.xmlEelco Dolstra2-40/+0
2014-09-16 Make troubleshooting an appendixEelco Dolstra3-14/+12
2014-09-16 Style tweakEelco Dolstra2-1/+7
2014-09-16 Fix parallel make of manpagesEelco Dolstra1-2/+4
2014-09-16 Fix references to version.txtEelco Dolstra15-16/+16
2014-09-16 Drop separate release notesEelco Dolstra1-28/+0
2014-09-16 Undocument NIX_OTHER_STORESEelco Dolstra3-49/+2
2014-09-16 Tweak some chapter titlesEelco Dolstra2-2/+2
2014-09-16 Drop "service deployment" bla blaEelco Dolstra1-29/+1
2014-09-16 Drop reference to FreeBSDEelco Dolstra1-3/+3
2014-09-16 Remove pointless "license" sectionEelco Dolstra2-25/+0
2014-09-16 Release notes: Use a section per versionEelco Dolstra29-58/+60
2014-09-16 Nicer file names for the release notesEelco Dolstra29-29/+27
2014-09-16 Manual build fixesEelco Dolstra4-15/+15
2014-09-16 Merge branch 'master' of github.com:thatdocslady/nixEelco Dolstra107-5751/+6191
Conflicts: doc/manual/release-notes.xml doc/manual/writing-nix-expressions.xml
2014-09-16 Add some hyperlinks between NIXPATH and -IEelco Dolstra3-25/+27
2014-08-28 allowedRequisites: Drop stdenv mentionEelco Dolstra2-8/+3
I don't think it's a good idea to use allowedRequisites for stdenv, so don't mention it here.
2014-08-28 Fix manual buildEelco Dolstra1-1/+2
2014-08-28 Introduce allowedRequisites featureGergely Risko2-0/+33
2014-08-27 Restructuring the Nix manualMikey Ariel107-5722/+6162
2014-08-23 Document the "out" usage in allowedReferencesGergely Risko1-4/+5
2014-08-13 Remove pointless NIX_LOG_TYPE environment variableEelco Dolstra1-9/+0
2014-08-04 Update manualEelco Dolstra1-25/+33
2014-07-24 nix-copy-closure: Drop --bzip2, --xz, --show-progressEelco Dolstra1-10/+9
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-18 BumpEelco Dolstra1-0/+9
2014-07-17 nix-daemon: Add trusted-users and allowed-users optionsEelco Dolstra1-0/+42
‘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.