Home Manager using Nix ====================== This project provides a basic system for managing a user environment using the [Nix][] package manager together with the Nix libraries found in [Nixpkgs][]. Before attempting to use Home Manager please read the warning below. Words of warning ---------------- This project is under development. I personally use it to manage several user configurations but it may fail catastrophically for you. So beware! In some cases Home Manager cannot detect whether it will overwrite a previous manual configuration. For example, the Gnome Terminal module will write to your dconf store and cannot tell whether a configuration that it is about to be overwrite was from a previous Home Manager generation or from manual configuration. Home Manager targets [NixOS][] unstable and NixOS version 17.09 (the current stable version), it may or may not work on other Linux distributions and NixOS versions. Also, the `home-manager` tool does not explicitly support rollbacks at the moment so if your home directory gets messed up you'll have to fix it yourself (you can attempt to run the activation script for the desired generation). Now when your expectations have been built up and you are eager to try all this out you can go ahead and read the rest of this text. Installation ------------ Currently the easiest way to install Home Manager is as follows: 1. Make sure you have a working Nix installation. If you are not using NixOS then you may here have to run ```console $ mkdir -m 0755 -p /nix/var/nix/{profiles,gcroots}/per-user/$USER ``` since Home Manager uses these directories to manage your profile generations. On NixOS these should already be available. Also make sure that your user is able to build and install Nix packages. For example, you should be able to successfully run a command like `nix-instantiate '' -A hello`. For a multi-user install of Nix this means that your user must be covered by the [`allowed-users`][nixAllowedUsers] Nix option. On NixOS you can control this option using the [`nix.allowedUsers`][nixosAllowedUsers] system option. 2. Assign a temporary variable holding the URL to the appropriate archive. Typically this is ```console $ HM_PATH=https://github.com/rycee/home-manager/archive/master.tar.gz ``` or ```console $ HM_PATH=https://github.com/rycee/home-manager/archive/release-17.09.tar.gz ``` depending on whether you follow Nixpkgs unstable or version 17.09. 3. Create an initial Home Manager configuration file: ```console $ cat > ~/.config/nixpkgs/home.nix <