about summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2022-12-23 00:43:05 +0100
committerpennae <82953136+pennae@users.noreply.github.com>2022-12-27 18:23:21 +0100
commit73c0b5c4e87b8fadcaf0f06b5adf95f995bfeeae (patch)
treea27718b7a5dd2a55355d758a787927526677e2d7 /nixos/modules/config
parent907fb200d054847e71fe40878604fc72958cc6a9 (diff)
nixos/users-groups: make isNormalUser description readable
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/users-groups.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/nixos/modules/config/users-groups.nix b/nixos/modules/config/users-groups.nix
index 61d70ccc19b2a..19319b9309cd1 100644
--- a/nixos/modules/config/users-groups.nix
+++ b/nixos/modules/config/users-groups.nix
@@ -101,16 +101,13 @@ let
         type = types.bool;
         default = false;
         description = lib.mdDoc ''
-          Indicates whether this is an account for a “real” user. This
-          automatically sets {option}`group` to
-          `users`, {option}`createHome` to
-          `true`, {option}`home` to
-          {file}`/home/«username»`,
+          Indicates whether this is an account for a “real” user.
+          This automatically sets {option}`group` to `users`,
+          {option}`createHome` to `true`,
+          {option}`home` to {file}`/home/«username»`,
           {option}`useDefaultShell` to `true`,
-          and {option}`isSystemUser` to
-          `false`.
-          Exactly one of `isNormalUser` and
-          `isSystemUser` must be true.
+          and {option}`isSystemUser` to `false`.
+          Exactly one of `isNormalUser` and `isSystemUser` must be true.
         '';
       };