diff --git a/index.html b/index.html index 22e89267..7d5a3efa 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
?+
ca.desrt.dconf
?This manual will eventually describes how to install, use, and extend Home Manager.
@@ -45,7 +45,7 @@ Add the Home Manager channel that you wish to follow. If you are following Nixpkgs master or an unstable channel then this is done by running
$ nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager -$ nix-channel --update
and if you follow a Nixpkgs version 20.09 channel, you can run
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-20.09.tar.gz home-manager +$ nix-channel --update
and if you follow a Nixpkgs version 21.05 channel, you can run
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager $ nix-channel --update
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
export NIX_PATH=$HOME/.nix-defexpr/channels${NIX_PATH:+:}$NIX_PATH
to your shell (see nix#2033).
@@ -69,7 +69,7 @@ deployed through NixOps.
To make the NixOS module available for use you mu your system configuration. This is most conveniently done by adding a Home Manager channel. For example, if you are following Nixpkgs master or an unstable channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager -# nix-channel --update
and if you follow a Nixpkgs version 20.09 channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-20.09.tar.gz home-manager +# nix-channel --update
and if you follow a Nixpkgs version 21.05 channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager # nix-channel --update
It is then possible to add
imports = [ <home-manager/nixos> ];
to your system configuration.nix
file, which will introduce a new
NixOS option called home-manager.users
whose type is an attribute
set that maps user names to Home Manager configurations.
For example, a NixOS configuration may include the lines
users.users.eve.isNormalUser = true; @@ -92,7 +92,7 @@ tool.To make the NixOS module available for use you must
# nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager -# nix-channel --update
and if you follow a Nixpkgs version 20.09 channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-20.09.tar.gz home-manager +# nix-channel --update
and if you follow a Nixpkgs version 21.05 channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager # nix-channel --update
It is then possible to add
imports = [ <home-manager/nix-darwin> ];
to your nix-darwin configuration.nix
file, which will introduce a
new NixOS option called home-manager
whose type is an attribute set
that maps user names to Home Manager configurations.
For example, a nix-darwin configuration may include the lines
home-manager.users.eve = { pkgs, ... }: { diff --git a/options.html b/options.html index 1f464355..55fef397 100644 --- a/options.html +++ b/options.html @@ -1280,7 +1280,7 @@ settings are in effect and will therefore help avoid breaking program configurations. Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files. -Type: one of "18.09", "19.03", "19.09", "20.03", "20.09", "21.03", "21.05"
Default:
+
Type: one of "18.09", "19.03", "19.09", "20.03", "20.09", "21.03", "21.05", "21.11"
Default:
"18.09"
Declared by: