aboutsummaryrefslogtreecommitdiff
path: root/README.md (follow)
Commit message (Collapse)AuthorAgeFilesLines
* readme: add reference to Nix PillsRobert Helgesson2020-06-251-0/+6
|
* readme: remove firefox "enableIcedTea" optionMatthew Bauer2020-05-221-1/+7
| | | | | This option was actually removed in commit 3461ceebc01169f99362ab5cc62d26224e7886d9.
* home-manager: use `nix-env` to list generationsRobert Helgesson2020-05-161-15/+6
| | | | | | | | | | | | Using the `nix-env` command is far more robust. It also has the benefit that if the per-user `profiles` and `gcroots` directories do not exist then they will be created with the correct permissions. Because of the second point this commit also removes the `mkdir` step of the installation instructions. PR #1239 Closes #474, #948, #1091
* Update documentation for release 20.03Robert Helgesson2020-04-231-4/+4
|
* README: add link to main manual pageErik Arvstedt2020-03-071-2/+3
| | | | | | | | The main manual page is highly relevant and should be easily discoverable from the README. PR #1059 Fixes #1048
* readme: add notes on release policyVojtěch Káně2020-02-241-0/+11
| | | | PR #1046
* readme: add more prominent link to the manualeyeinsky2020-01-261-0/+3
| | | | PR #996
* doc: update version number in some placesRobert Helgesson2019-10-291-3/+3
|
* Update stable version to 19.03Robert Helgesson2019-04-221-3/+3
| | | | Also prepares for 19.09.
* readme: expand contact section slightlyRobert Helgesson2019-03-231-1/+6
| | | | | In particular, mention that the channel is hosted by freenode and the channel logs are hosted by samueldr.
* readme: add contact section with the IRC channelRobert Helgesson2019-03-221-0/+6
|
* readme: add notice that relog may be neededRobert Helgesson2018-12-231-0/+9
| | | | | Also add instructions for non-NixOS users to add the user channel directory to `NIX_PATH`.
* readme: fix .gitconfig exampleLorenzo2018-12-121-1/+1
| | | | | The example was referencing `~/.gitconfig`, which isn't being checked anymore since 356c0bf751a55878c448461d8ef1d17f43911acd.
* readme: clarify bash/zsh compatibilityLorenzo Manacorda2018-12-121-2/+3
| | | | | Makes it clearer that the compatibility mentioned only relates to the manual loading approach.
* doc: add installation instructions to manualRobert Helgesson2018-12-061-5/+6
| | | | Also minor cleanups in README.
* Change installation instructions to use nix-channelRobert Helgesson2018-12-041-25/+14
| | | | | | This avoids the uncontrollable nature of fetching the tarball as part of the evaluation. Instead the user can decide when to update and also perform rollbacks, if necessary.
* readme: switch stable channel to 18.09Robert Helgesson2018-12-031-3/+3
|
* readme: documentation is now hosted on GitLabRobert Helgesson2018-10-181-1/+1
|
* readme: make branch suggestion more clearRobert Helgesson2018-05-221-2/+2
| | | | Fixes #270.
* readme: add link to online options documentationRobert Helgesson2018-05-111-2/+4
|
* readme: update stable NixOS version to 18.03Robert Helgesson2018-04-191-3/+3
|
* readme: add basic rollback instructionsRobert Helgesson2018-01-271-2/+36
|
* readme: add note about session variables fileRobert Helgesson2018-01-071-0/+20
| | | | | | If a user does not want to manage their shell configuration through Home Manager then they have to manually make sure that the session variables are set.
* readme: minor rewordingRobert Helgesson2017-11-291-2/+2
|
* home-manager: use `shellHook` to installRobert Helgesson2017-11-291-2/+2
| | | | | | | | | | | | | This changes the installation command from nix-shell $HM_PATH -A install --run 'home-manager switch' to nix-shell $HM_PATH -A install The added shell hook will print some useful information and run `home-manager switch`.
* readme: use IcedTea in exampleRobert Helgesson2017-11-131-3/+3
|
* readme: expand preconditions installation stepBjornMelgaard2017-11-061-2/+12
| | | | Also fix markdown list item numbering.
* readme: update installation instructionsRobert Helgesson2017-10-241-21/+38
| | | | Also clean up usage section slightly.
* readme: current NixOS stable is version 17.09Robert Helgesson2017-10-041-3/+3
|
* readme: minor fixesRobert Helgesson2017-10-041-2/+2
|
* readme: add 'console' syntax highlightingRobert Helgesson2017-09-271-8/+8
|
* Add overlay and instructions for using itLinus Heckemann2017-09-271-10/+5
|
* readme: add man page infoNikita Uvarov2017-09-211-0/+7
|
* README: add instructions for `release-17.03` branchRobert Helgesson2017-09-081-4/+13
| | | | (cherry picked from commit 46f03380923f923237c0530e6ca425e90dc226cd)
* home-manager: support `.config` configuration pathRobert Helgesson2017-06-031-5/+6
| | | | | | | | | | | | This commit changes the default path of the Home Manager configuration file from `~/.nixpkgs/home.nix` to `~/.config/nixpkgs/home.nix`. The old path is still supported and will be used if the `.config` path does not exist. This aligns Home Manager with the preferred configuration directory in NixOS 17.03. Fixes #13.
* More descriptive header in READMERobert Helgesson2017-05-171-2/+2
|
* Expand installation instructions slightlyRobert Helgesson2017-05-171-4/+12
| | | | | | | In particular, mention that non-NixOS users may have to create the per-user `profiles` and `gcroots` directories. Also reformat the list a little.
* Add note about using graphical services to READMERobert Helgesson2017-05-061-0/+34
|
* home-environment: prevent overwriting existing filesRobert Helgesson2017-05-061-21/+50
| | | | | | | | | | | | This should reduce the risk of overwriting an existing file in the user's home directory. A file will only be replaced if it is a link pointing to a home-manager tree inside the Nix store. If an existing file is detected an error is written indicating the file's path and the activation will terminate before any mutation occurs. Fixes #6
* Update README for 17.03Robert Helgesson2017-04-011-7/+8
|
* Fix configuration example in READMERobert Helgesson2017-02-041-1/+1
|
* home-manager: improve command line option handlingRobert Helgesson2017-01-161-1/+10
|
* Add basic README fileRobert Helgesson2017-01-151-0/+127