2017-01-14 13:04:57 +01:00
|
|
|
|
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
|
|
|
|
|
----------------
|
|
|
|
|
|
2017-05-06 00:44:00 +02:00
|
|
|
|
This project is under development. I personally use it to manage
|
2017-01-14 13:04:57 +01:00
|
|
|
|
several user configurations but it may fail catastrophically for you.
|
|
|
|
|
So beware!
|
|
|
|
|
|
2017-05-06 00:44:00 +02:00
|
|
|
|
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.
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
2017-06-15 18:11:49 +02:00
|
|
|
|
Home Manager targets [NixOS][] unstable and NixOS version 17.03 (the
|
|
|
|
|
current stable version), it may or may not work on other Linux
|
|
|
|
|
distributions and NixOS versions.
|
2017-04-01 23:05:36 +02:00
|
|
|
|
|
2017-05-06 00:44:00 +02:00
|
|
|
|
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
|
2017-04-01 23:05:36 +02:00
|
|
|
|
desired generation).
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
2017-05-17 23:14:45 +02:00
|
|
|
|
1. Make sure you have a working Nix installation. If you are not
|
|
|
|
|
using NixOS then you may here have to run
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
2017-05-17 23:14:45 +02:00
|
|
|
|
```
|
|
|
|
|
$ 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.
|
|
|
|
|
|
2017-05-20 23:39:54 +02:00
|
|
|
|
2. Clone the Home Manager repository into the `~/.config/nixpkgs`
|
|
|
|
|
directory:
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
|
|
|
|
```
|
2017-06-15 18:11:49 +02:00
|
|
|
|
$ git clone -b master https://github.com/rycee/home-manager ~/.config/nixpkgs/home-manager
|
2017-01-14 13:04:57 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-06-15 18:11:49 +02:00
|
|
|
|
or
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ git clone -b release-17.03 https://github.com/rycee/home-manager ~/.config/nixpkgs/home-manager
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
depending on whether you are tracking Nixpkgs unstable or version
|
|
|
|
|
17.03.
|
|
|
|
|
|
2017-09-25 14:14:51 +02:00
|
|
|
|
3. Add Home Manager to your user's Nixpkgs, for example by symlinking the
|
|
|
|
|
overlay to `~/.config/nixpkgs/overlays`:
|
|
|
|
|
|
|
|
|
|
```console
|
|
|
|
|
$ ln -s ~/.config/nixpkgs/home-manager/overlay.nix ~/.config/nixpkgs/overlays/home-manager.nix
|
2017-01-14 13:04:57 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-05-17 23:14:45 +02:00
|
|
|
|
4. Install the `home-manager` package:
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ nix-env -f '<nixpkgs>' -iA home-manager
|
|
|
|
|
installing ‘home-manager’
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Usage
|
|
|
|
|
-----
|
|
|
|
|
|
|
|
|
|
The `home-manager` package installs a tool that is conveniently called
|
|
|
|
|
`home-manager`. This tool can apply configurations to your home
|
|
|
|
|
directory, list user packages installed by the tool, and list the
|
|
|
|
|
configuration generations.
|
|
|
|
|
|
|
|
|
|
As an example, let us set up a very simple configuration that installs
|
|
|
|
|
the htop and fortune packages, installs Emacs with a few extra
|
|
|
|
|
packages enabled, installs Firefox with Adobe Flash enabled, and
|
|
|
|
|
enables the user gpg-agent service.
|
|
|
|
|
|
2017-05-20 23:39:54 +02:00
|
|
|
|
First create a file `~/.config/nixpkgs/home.nix` containing
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
|
|
|
|
```nix
|
2017-02-04 19:56:44 +01:00
|
|
|
|
{ pkgs, ... }:
|
2017-01-14 13:04:57 +01:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
home.packages = [
|
|
|
|
|
pkgs.htop
|
|
|
|
|
pkgs.fortune
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
programs.emacs = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraPackages = epkgs: [
|
|
|
|
|
epkgs.nix-mode
|
|
|
|
|
epkgs.magit
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
programs.firefox = {
|
|
|
|
|
enable = true;
|
|
|
|
|
enableAdobeFlash = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.gpg-agent = {
|
|
|
|
|
enable = true;
|
|
|
|
|
defaultCacheTtl = 1800;
|
|
|
|
|
enableSshSupport = true;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
To activate this configuration you can then run
|
|
|
|
|
|
|
|
|
|
```
|
2017-01-15 23:32:57 +01:00
|
|
|
|
$ home-manager switch
|
2017-01-14 13:04:57 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-15 23:32:57 +01:00
|
|
|
|
or if you are not feeling so lucky,
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ home-manager build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
which will create a `result` link to a directory containing an
|
|
|
|
|
activation script and the generated home directory files.
|
|
|
|
|
|
2017-09-21 10:23:23 +02:00
|
|
|
|
To see available configuration options with descriptions
|
|
|
|
|
and usage examples run
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ man home-configuration.nix
|
|
|
|
|
```
|
|
|
|
|
|
2017-05-17 23:26:16 +02:00
|
|
|
|
Keeping your ~ safe from harm
|
|
|
|
|
-----------------------------
|
2017-05-06 00:44:00 +02:00
|
|
|
|
|
|
|
|
|
To configure programs and services the Home Manager must write various
|
|
|
|
|
things to your home directory. To prevent overwriting any existing
|
|
|
|
|
files when switching to a new generation, Home Manager will attempt to
|
|
|
|
|
detect collisions between existing files and generated files. If any
|
|
|
|
|
such collision is detected the activation will terminate before
|
|
|
|
|
changing anything on your computer.
|
|
|
|
|
|
|
|
|
|
For example, suppose you have a wonderful, painstakingly created
|
|
|
|
|
`~/.gitconfig` and add
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
{
|
|
|
|
|
# …
|
|
|
|
|
|
|
|
|
|
programs.git = {
|
|
|
|
|
enable = true;
|
|
|
|
|
userName = "Jane Doe";
|
|
|
|
|
userEmail = "jane.doe@example.org";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# …
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
to your configuration. Attempting to switch to the generation will
|
|
|
|
|
then result in
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
$ home-manager switch
|
|
|
|
|
…
|
|
|
|
|
Activating checkLinkTargets
|
|
|
|
|
Existing file '/home/jdoe/.gitconfig' is in the way
|
|
|
|
|
Please move the above files and try again
|
|
|
|
|
```
|
|
|
|
|
|
2017-05-06 12:50:32 +02:00
|
|
|
|
Graphical services
|
|
|
|
|
------------------
|
|
|
|
|
|
|
|
|
|
Home Manager includes a number of services intended to run in a
|
|
|
|
|
graphical session, for example `xscreensaver` and `dunst`.
|
|
|
|
|
Unfortunately, such services will not be started automatically unless
|
|
|
|
|
you let Home Manager start your X session. That is, you have something
|
|
|
|
|
like
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
{
|
|
|
|
|
# …
|
|
|
|
|
|
|
|
|
|
services.xserver.enable = true;
|
|
|
|
|
|
|
|
|
|
# …
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
in your system configuration and
|
|
|
|
|
|
|
|
|
|
```nix
|
|
|
|
|
{
|
|
|
|
|
# …
|
|
|
|
|
|
|
|
|
|
xsession.enable = true;
|
|
|
|
|
xsession.windowManager = "…";
|
|
|
|
|
|
|
|
|
|
# …
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
in your Home Manager configuration.
|
|
|
|
|
|
2017-01-14 13:04:57 +01:00
|
|
|
|
[Nix]: https://nixos.org/nix/
|
|
|
|
|
[NixOS]: https://nixos.org/
|
|
|
|
|
[Nixpkgs]: https://nixos.org/nixpkgs/
|