Unverified Commit 0d553b5a authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nioxs/etc: improve docs for file ownership (#378659)

parents 685f1329 2442d7af
Loading
Loading
Loading
Loading
+16 −6
Original line number Diff line number Diff line
@@ -194,9 +194,14 @@ in
                  default = "+${toString config.uid}";
                  type = lib.types.str;
                  description = ''
                    User name of created file.
                    Only takes effect when the file is copied (that is, the mode is not 'symlink').
                    Changing this option takes precedence over `uid`.
                    User name of file owner.

                    Only takes effect when the file is copied (that is, the
                    mode is not `symlink`).

                    When `services.userborn.enable`, this option has no effect.
                    You have to assign a `uid` instead. Otherwise this option
                    takes precedence over `uid`.
                  '';
                };

@@ -204,9 +209,14 @@ in
                  default = "+${toString config.gid}";
                  type = lib.types.str;
                  description = ''
                    Group name of created file.
                    Only takes effect when the file is copied (that is, the mode is not 'symlink').
                    Changing this option takes precedence over `gid`.
                    Group name of file owner.

                    Only takes effect when the file is copied (that is, the
                    mode is not `symlink`).

                    When `services.userborn.enable`, this option has no effect.
                    You have to assign a `gid` instead. Otherwise this option
                    takes precedence over `gid`.
                  '';
                };