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

docs: NixOS and nix-darwin option documentation

This commit is contained in:
Robert Helgesson 2021-01-18 23:21:32 +01:00
parent c33b1777b6
commit 5280360d6c
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
4 changed files with 73 additions and 8 deletions

View file

@ -46,7 +46,7 @@ in {
home-manager = {
useUserPackages = mkEnableOption ''
installation of user packages through the
<option>users.users.name?.packages</option> option.
<option>users.users.&lt;name&gt;.packages</option> option.
'';
useGlobalPkgs = mkEnableOption ''
@ -70,6 +70,9 @@ in {
users = mkOption {
type = types.attrsOf hmModule;
default = { };
# Set as not visible to prevent the entire submodule being included in
# the documentation.
visible = false;
description = ''
Per-user Home Manager configuration.
'';