diff --git a/index.html b/index.html index 136a9f6e..614d097f 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.
@@ -354,15 +354,15 @@ is similar to that of NixOS. The flake.nix
would be
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
- nix-darwin.url = "github:lnl7/nix-darwin";
+ darwin.url = "github:lnl7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
- outputs = inputs@{ nixpkgs, home-manager, nix-darwin, ... }: {
+ outputs = inputs@{ nixpkgs, home-manager, darwin, ... }: {
darwinConfigurations = {
- hostname = nix-darwin.lib.darwinSystem {
+ hostname = darwin.lib.darwinSystem {
system = "x86_64-darwin";
modules = [
./configuration.nix
diff --git a/tools.html b/tools.html
index 965632ab..5229bcb3 100644
--- a/tools.html
+++ b/tools.html
@@ -1,6 +1,6 @@
-
home-manager +
home-manager — reconfigure a user environment
home-manager
{
build
|
@@ -84,7 +84,7 @@
|
--verbose
}
- ]
This command updates the user environment so that it corresponds to the
configuration specified in ~/.config/nixpkgs/home.nix
or ~/.config/nixpkgs/flake.nix
.
@@ -153,7 +153,7 @@ available for immediate garbage collection.
-
The tool accepts the options
-A attrPath
@@ -265,15 +265,15 @@
--verbose
Activates verbose output. -