1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 00:21:04 +01:00
This commit is contained in:
teto 2025-03-08 18:15:01 +00:00
parent 2163ffa17d
commit e44f828c74

View file

@ -575,15 +575,15 @@ you may wish to import Home Managers flake module,
inputs.home-manager.flakeModules.home-manager inputs.home-manager.flakeModules.home-manager
]; ];
flake = { flake = {
# Define `homeManagerModules`, `homeConfigurations`, # Define `homeModules`, `homeConfigurations`,
# `nixosConfigurations`, etc here # `nixosConfigurations`, etc here
}; };
# See flake.parts for more features, such as `perSystem` # See flake.parts for more features, such as `perSystem`
}; };
} }
</code></pre><p>The flake module defines the <code class="literal">flake.homeManagerModules</code> and <code class="literal">flake.homeConfigurations</code> </code></pre><p>The flake module defines the <code class="literal">flake.homeModules</code> and <code class="literal">flake.homeConfigurations</code>
options, allowing them to be properly merged if they are defined in multiple options, allowing them to be properly merged if they are defined in multiple
modules.</p><p>If you are only defining <code class="literal">homeManagerModules</code> and/or <code class="literal">homeConfigurations</code> once in a modules.</p><p>If you are only defining <code class="literal">homeModules</code> and/or <code class="literal">homeConfigurations</code> once in a
single module, flake-parts should work fine without importing single module, flake-parts should work fine without importing
<code class="literal">flakeModules.home-manager</code>.</p> <code class="literal">flakeModules.home-manager</code>.</p>
</div> </div>