1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

nixos/fileSystems: link to mount(8) from fileSystems.*.options

This commit is contained in:
Peder Bergebakken Sundt 2025-01-27 01:02:27 +01:00
parent a0da48df91
commit f259802ac7

View file

@ -68,7 +68,10 @@ let
options = mkOption {
default = [ "defaults" ];
example = [ "data=journal" ];
description = "Options used to mount the file system.";
description = ''
Options used to mount the file system.
See {manpage}`mount(8)` for common options.
'';
type = types.nonEmptyListOf nonEmptyStr;
};