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.
|
|
|
|
|
2020-03-01 17:06:18 +01:00
|
|
|
For a more systematic overview of Home Manager and its available
|
|
|
|
options, please see the [Home Manager manual][manual].
|
2020-01-19 16:44:38 +01:00
|
|
|
|
2017-01-14 13:04:57 +01:00
|
|
|
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!
|
|
|
|
|
2020-06-25 00:10:08 +02:00
|
|
|
Before using Home Manager you should be comfortable using the Nix
|
|
|
|
language and the various tools in the Nix ecosystem. Reading through
|
|
|
|
the [Nix Pills][] document is a good way to familiarize yourself with
|
|
|
|
them.
|
|
|
|
|
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
|
|
|
|
2020-11-02 22:42:49 +01:00
|
|
|
Home Manager targets [NixOS][] unstable and NixOS version 20.09 (the
|
2017-06-15 18:11:49 +02:00
|
|
|
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
|
2018-01-27 10:17:42 +01:00
|
|
|
it yourself. See the [rollbacks](#rollbacks) section for instructions
|
|
|
|
on how to manually perform a rollback.
|
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.
|
|
|
|
|
2019-03-22 19:10:43 +01:00
|
|
|
Contact
|
|
|
|
-------
|
|
|
|
|
2019-03-23 23:20:22 +01:00
|
|
|
You can chat with us on IRC in the channel [#home-manager][] on
|
|
|
|
[freenode][]. The [channel logs][] are hosted courtesy of
|
|
|
|
[samueldr][].
|
2019-03-22 19:10:43 +01:00
|
|
|
|
2017-01-14 13:04:57 +01:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
Currently the easiest way to install Home Manager is as follows:
|
|
|
|
|
2020-05-16 18:09:09 +02:00
|
|
|
1. Make sure you have a working Nix installation. Specifically, 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 '<nixpkgs>' -A hello` without having to switch to
|
|
|
|
the root user. For a multi-user install of Nix this means that
|
|
|
|
your user must be covered by the
|
2018-09-15 13:27:21 +02:00
|
|
|
[`allowed-users`][nixAllowedUsers] Nix option. On NixOS you can
|
|
|
|
control this option using the
|
2017-11-05 22:24:42 +01:00
|
|
|
[`nix.allowedUsers`][nixosAllowedUsers] system option.
|
|
|
|
|
2020-10-26 17:08:16 +01:00
|
|
|
Note that Nix 2.4 (`nixUnstable`) is not yet supported.
|
|
|
|
|
2018-12-03 00:48:07 +01:00
|
|
|
2. Add the appropriate Home Manager channel. Typically this is
|
2017-01-14 13:04:57 +01:00
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
2020-09-29 20:30:06 +02:00
|
|
|
$ nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
|
2018-12-03 00:48:07 +01:00
|
|
|
$ nix-channel --update
|
2017-01-14 13:04:57 +01:00
|
|
|
```
|
|
|
|
|
2018-05-22 18:14:37 +02:00
|
|
|
if you are following Nixpkgs master or an unstable channel and
|
2017-06-15 18:11:49 +02:00
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
2020-11-02 22:42:49 +01:00
|
|
|
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-20.09.tar.gz home-manager
|
2018-12-03 00:48:07 +01:00
|
|
|
$ nix-channel --update
|
2017-06-15 18:11:49 +02:00
|
|
|
```
|
|
|
|
|
2020-11-02 22:42:49 +01:00
|
|
|
if you follow a Nixpkgs version 20.09 channel.
|
2017-06-15 18:11:49 +02:00
|
|
|
|
2018-12-23 10:47:12 +01:00
|
|
|
On NixOS you may need to log out and back in for the channel to
|
|
|
|
become available. On non-NixOS you may have to add
|
|
|
|
|
|
|
|
```shell
|
|
|
|
export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH
|
|
|
|
```
|
|
|
|
|
|
|
|
to your shell (see [nix#2033](https://github.com/NixOS/nix/issues/2033)).
|
|
|
|
|
2018-12-03 00:48:07 +01:00
|
|
|
3. Install Home Manager and create the first Home Manager generation:
|
2017-09-25 14:14:51 +02:00
|
|
|
|
|
|
|
```console
|
2018-12-03 00:48:07 +01:00
|
|
|
$ nix-shell '<home-manager>' -A install
|
2017-01-14 13:04:57 +01:00
|
|
|
```
|
|
|
|
|
2018-12-03 00:48:07 +01:00
|
|
|
Once finished, Home Manager should be active and available in your
|
|
|
|
user environment.
|
2017-01-14 13:04:57 +01:00
|
|
|
|
2018-12-03 00:48:07 +01:00
|
|
|
3. If you do not plan on having Home Manager manage your shell
|
2018-01-04 13:27:29 +01:00
|
|
|
configuration then you must source the
|
|
|
|
|
|
|
|
```
|
2018-09-15 13:27:21 +02:00
|
|
|
$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh
|
2018-01-04 13:27:29 +01:00
|
|
|
```
|
|
|
|
|
2018-12-11 22:22:13 +01:00
|
|
|
file in your shell configuration. Unfortunately, in this specific
|
|
|
|
case we currently only support POSIX.2-like shells such as
|
|
|
|
[Bash][] or [Z shell][].
|
2018-01-04 13:27:29 +01:00
|
|
|
|
|
|
|
For example, if you use Bash then add
|
|
|
|
|
|
|
|
```bash
|
|
|
|
. "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
|
|
|
|
```
|
|
|
|
|
|
|
|
to your `~/.profile` file.
|
|
|
|
|
2018-12-03 00:48:07 +01:00
|
|
|
If instead of using channels you want to run Home Manager from a Git
|
|
|
|
checkout of the repository then you can use the
|
|
|
|
`programs.home-manager.path` option to specify the absolute path to
|
|
|
|
the repository.
|
2017-10-23 14:01:38 +02:00
|
|
|
|
2017-01-14 13:04:57 +01:00
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
2017-10-23 14:01:38 +02:00
|
|
|
Home Manager is typically managed through the `home-manager` tool.
|
|
|
|
This tool can, for example, apply configurations to your home
|
2017-01-14 13:04:57 +01:00
|
|
|
directory, list user packages installed by the tool, and list the
|
|
|
|
configuration generations.
|
|
|
|
|
2017-10-23 14:01:38 +02:00
|
|
|
As an example, let us expand the initial configuration file from the
|
|
|
|
installation above to install the htop and fortune packages, install
|
2020-10-25 19:44:12 +01:00
|
|
|
Emacs with a few extra packages enabled, install Firefox with
|
|
|
|
smooth scrolling enabled, and enable the user gpg-agent service.
|
2017-01-14 13:04:57 +01:00
|
|
|
|
2017-10-23 14:01:38 +02:00
|
|
|
To satisfy the above setup we should elaborate the
|
|
|
|
`~/.config/nixpkgs/home.nix` file as follows:
|
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;
|
2020-05-20 03:40:42 +02:00
|
|
|
profiles = {
|
|
|
|
myprofile = {
|
|
|
|
settings = {
|
|
|
|
"general.smoothScroll" = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2017-01-14 13:04:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
services.gpg-agent = {
|
|
|
|
enable = true;
|
|
|
|
defaultCacheTtl = 1800;
|
|
|
|
enableSshSupport = true;
|
|
|
|
};
|
2017-10-23 14:01:38 +02:00
|
|
|
|
|
|
|
programs.home-manager = {
|
|
|
|
enable = true;
|
|
|
|
path = "…";
|
|
|
|
};
|
2017-01-14 13:04:57 +01:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
To activate this configuration you can then run
|
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
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,
|
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
2017-01-15 23:32:57 +01:00
|
|
|
$ home-manager build
|
|
|
|
```
|
|
|
|
|
|
|
|
which will create a `result` link to a directory containing an
|
|
|
|
activation script and the generated home directory files.
|
|
|
|
|
2018-05-11 22:38:47 +02:00
|
|
|
Documentation of available configuration options, including
|
|
|
|
descriptions and usage examples, is available in the [Home Manager
|
|
|
|
manual][configuration options] or offline by running
|
2017-09-21 10:23:23 +02:00
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
2017-09-21 10:23:23 +02:00
|
|
|
$ man home-configuration.nix
|
|
|
|
```
|
|
|
|
|
2018-01-27 10:17:42 +01:00
|
|
|
Rollbacks
|
|
|
|
---------
|
|
|
|
|
|
|
|
While the `home-manager` tool does not explicitly support rollbacks at
|
|
|
|
the moment it is relatively easy to perform one manually. The steps to
|
|
|
|
do so are
|
|
|
|
|
|
|
|
1. Run `home-manager generations` to determine which generation you
|
|
|
|
wish to rollback to:
|
|
|
|
|
|
|
|
```console
|
|
|
|
$ home-manager generations
|
|
|
|
2018-01-04 11:56 : id 765 -> /nix/store/kahm1rxk77mnvd2l8pfvd4jkkffk5ijk-home-manager-generation
|
|
|
|
2018-01-03 10:29 : id 764 -> /nix/store/2wsmsliqr5yynqkdyjzb1y57pr5q2lsj-home-manager-generation
|
|
|
|
2018-01-01 12:21 : id 763 -> /nix/store/mv960kl9chn2lal5q8lnqdp1ygxngcd1-home-manager-generation
|
|
|
|
2017-12-29 21:03 : id 762 -> /nix/store/6c0k1r03fxckql4vgqcn9ccb616ynb94-home-manager-generation
|
|
|
|
2017-12-25 18:51 : id 761 -> /nix/store/czc5y6vi1rvnkfv83cs3rn84jarcgsgh-home-manager-generation
|
|
|
|
…
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Copy the Nix store path of the generation you chose, e.g.,
|
|
|
|
|
|
|
|
/nix/store/mv960kl9chn2lal5q8lnqdp1ygxngcd1-home-manager-generation
|
|
|
|
|
|
|
|
for generation 763.
|
|
|
|
|
|
|
|
3. Run the `activate` script inside the copied store path:
|
|
|
|
|
|
|
|
```console
|
|
|
|
$ /nix/store/mv960kl9chn2lal5q8lnqdp1ygxngcd1-home-manager-generation/activate
|
|
|
|
Starting home manager activation
|
|
|
|
…
|
|
|
|
```
|
|
|
|
|
2017-05-17 23:26:16 +02:00
|
|
|
Keeping your ~ safe from harm
|
|
|
|
-----------------------------
|
2017-05-06 00:44:00 +02:00
|
|
|
|
2017-10-04 00:24:59 +02:00
|
|
|
To configure programs and services Home Manager must write various
|
2017-05-06 00:44:00 +02:00
|
|
|
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
|
2018-12-10 22:16:34 +01:00
|
|
|
`~/.config/git/config` and add
|
2017-05-06 00:44:00 +02:00
|
|
|
|
|
|
|
```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
|
|
|
|
|
2017-09-27 13:29:32 +02:00
|
|
|
```console
|
2017-05-06 00:44:00 +02:00
|
|
|
$ 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;
|
2017-10-04 00:24:59 +02:00
|
|
|
xsession.windowManager.command = "…";
|
2017-05-06 12:50:32 +02:00
|
|
|
|
|
|
|
# …
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
in your Home Manager configuration.
|
|
|
|
|
2020-09-26 12:38:33 +02:00
|
|
|
Nix Flakes
|
|
|
|
----------
|
2020-09-01 08:13:04 +02:00
|
|
|
|
2020-09-26 12:38:33 +02:00
|
|
|
Home Manager includes a `flake.nix` file for compatibility with [Nix Flakes][]
|
|
|
|
for those that wish to use it as a module. A bare-minimum `flake.nix` would be
|
|
|
|
as follows:
|
2020-09-01 08:13:04 +02:00
|
|
|
|
|
|
|
```nix
|
|
|
|
{
|
|
|
|
description = "NixOS configuration";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2020-09-29 20:30:06 +02:00
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
2020-09-01 08:13:04 +02:00
|
|
|
};
|
|
|
|
|
2020-09-26 12:38:33 +02:00
|
|
|
outputs = { home-manager, nixpkgs, ... }: {
|
2020-09-01 08:13:04 +02:00
|
|
|
nixosConfigurations = {
|
2020-09-26 12:38:33 +02:00
|
|
|
hostname = nixpkgs.lib.nixosSystem {
|
2020-09-01 08:13:04 +02:00
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
2020-09-26 12:38:33 +02:00
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
|
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.useUserPackages = true;
|
|
|
|
home-manager.users.user = import ./home.nix;
|
|
|
|
}
|
2020-09-01 08:13:04 +02:00
|
|
|
];
|
2020-09-26 12:38:33 +02:00
|
|
|
};
|
2020-09-01 08:13:04 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-02-23 22:40:31 +01:00
|
|
|
Releases
|
|
|
|
--------
|
|
|
|
|
|
|
|
Home Manager is developed against `nixpkgs-unstable` branch, which
|
|
|
|
often causes it to contain tweaks for changes/packages not yet
|
|
|
|
released in stable NixOS. To avoid breaking users' configurations,
|
|
|
|
Home Manager is released in branches corresponding to NixOS releases
|
2020-11-02 22:42:49 +01:00
|
|
|
(e.g. `release-20.09`). These branches get fixes, but usually not new
|
2020-02-23 22:40:31 +01:00
|
|
|
modules. If you need a module to be backported, then feel free to open
|
|
|
|
an issue.
|
|
|
|
|
2018-01-04 13:27:29 +01:00
|
|
|
[Bash]: https://www.gnu.org/software/bash/
|
2017-01-14 13:04:57 +01:00
|
|
|
[Nix]: https://nixos.org/nix/
|
|
|
|
[NixOS]: https://nixos.org/
|
|
|
|
[Nixpkgs]: https://nixos.org/nixpkgs/
|
2017-11-05 22:24:42 +01:00
|
|
|
[nixAllowedUsers]: https://nixos.org/nix/manual/#conf-allowed-users
|
|
|
|
[nixosAllowedUsers]: https://nixos.org/nixos/manual/options.html#opt-nix.allowedUsers
|
2018-01-04 13:27:29 +01:00
|
|
|
[Z shell]: http://zsh.sourceforge.net/
|
2020-10-19 21:22:35 +02:00
|
|
|
[manual]: https://nix-community.github.io/home-manager/
|
|
|
|
[configuration options]: https://nix-community.github.io/home-manager/options.html
|
2019-03-22 19:10:43 +01:00
|
|
|
[#home-manager]: https://webchat.freenode.net/?url=irc%3A%2F%2Firc.freenode.net%2Fhome-manager
|
2019-03-23 23:20:22 +01:00
|
|
|
[freenode]: https://freenode.net/
|
|
|
|
[channel logs]: https://logs.nix.samueldr.com/home-manager/
|
|
|
|
[samueldr]: https://github.com/samueldr/
|
2020-06-25 00:10:08 +02:00
|
|
|
[Nix Pills]: https://nixos.org/nixos/nix-pills/
|
2020-09-26 12:38:33 +02:00
|
|
|
[Nix Flakes]: https://nixos.wiki/wiki/Flakes
|