1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

flake-module: fix naming

This commit is contained in:
Robert Helgesson 2025-01-30 23:22:29 +01:00
parent 234613d77c
commit a8159195bf
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
2 changed files with 3 additions and 4 deletions

View file

@ -1,7 +1,7 @@
# flake-parts module {#sec-flakes-flake-parts-module} # flake-parts module {#sec-flakes-flake-parts-module}
When using [flake-parts](https://flake.parts) When using [flake-parts](https://flake.parts)
you may wish to import home-manager's flake module, you may wish to import Home Manager's flake module,
`flakeModules.home-manager`. `flakeModules.home-manager`.
``` nix ``` nix
@ -37,4 +37,3 @@ modules.
If you are only defining `homeModules` and/or `homeConfigurations` once in a If you are only defining `homeModules` and/or `homeConfigurations` once in a
single module, flake-parts should work fine without importing single module, flake-parts should work fine without importing
`flakeModules.home-manager`. `flakeModules.home-manager`.

View file

@ -7,7 +7,7 @@ in {
type = types.lazyAttrsOf types.raw; type = types.lazyAttrsOf types.raw;
default = { }; default = { };
description = '' description = ''
Instantiated Home-Manager configurations. Instantiated Home Manager configurations.
`homeConfigurations` is for specific installations. If you want to expose `homeConfigurations` is for specific installations. If you want to expose
reusable configurations, add them to `homeModules` in the form of modules, so reusable configurations, add them to `homeModules` in the form of modules, so
@ -22,7 +22,7 @@ in {
imports = [ v ]; imports = [ v ];
}); });
description = '' description = ''
Home-Manager modules. Home Manager modules.
You may use this for reusable pieces of configuration, service modules, etc. You may use this for reusable pieces of configuration, service modules, etc.
''; '';