summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorFederico Beffa <beffa@fbengineering.ch>2022-05-14 11:47:48 +0200
committerFederico Beffa <beffa@fbengineering.ch>2022-05-14 11:59:44 +0200
commit311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d (patch)
treed5efba1f395d5427df83ee2417d8f83ad48364d0 /nixos/modules/config
parent9fc01af1cc8f9ffe40bf87b96cbafd1810856ea7 (diff)
downloadnixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar.gz
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar.bz2
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar.lz
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar.xz
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.tar.zst
nixpkgs-311aa6d05d57fe1e94d16509b8eff43dbd6dbc7d.zip
nixos/users-group: Update description of 'homeMode' option.
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/users-groups.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index e9ce9d5e411..16e387a44c0 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -142,7 +142,7 @@ let
       homeMode = mkOption {
         type = types.strMatching "[0-7]{1,5}";
         default = "700";
-        description = "The user's home directory mode in numeric format. See chmod(1).";
+        description = "The user's home directory mode in numeric format. See chmod(1). The mode is only applied if <option>users.users.&lt;name&gt;.createHome</option> is true.";
       };
 
       cryptHomeLuks = mkOption {