From f259802ac7a5c247d987681017169712d97a9f8d Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 27 Jan 2025 01:02:27 +0100 Subject: [PATCH] nixos/fileSystems: link to mount(8) from `fileSystems.*.options` --- nixos/modules/tasks/filesystems.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix index ccca8e5474bd..13e4a6681c56 100644 --- a/nixos/modules/tasks/filesystems.nix +++ b/nixos/modules/tasks/filesystems.nix @@ -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; };