diff --git a/index.html b/index.html index 314003c95..2808b021d 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf or dconf.service?+
ca.desrt.dconf or dconf.service?This manual will eventually describe how to install, use, and extend Home Manager.
@@ -72,9 +72,9 @@ user environments in NixOS declarative containers or on systems deployed through NixOps.
To make the NixOS module available for use you must import it into
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 22.05 channel, you can run
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-22.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
+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 22.05 channel, you can run
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-22.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;
home-manager.users.eve = { pkgs, ... }: {
diff --git a/options.html b/options.html
index 18a798bcd..311ea6792 100644
--- a/options.html
+++ b/options.html
@@ -7261,7 +7261,7 @@ manually set any options not listed above.
programs.vscode.enableWhether to enable Visual Studio Code.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.packageVersion of Visual Studio Code to install. -
Type: package
Default: (build of vscode-1.68.0)
Example: pkgs.vscodium
Declared by:
+ |