Unverified Commit fc368722 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

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

parents 784baa4b 15391ccd
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
      };

@@ -297,7 +300,7 @@ in
      example = "32m";
      type = types.str;
      description = ''
        Size limit for the /dev tmpfs. Look at mount(8), tmpfs size option,
        Size limit for the /dev tmpfs. Look at {manpage}`mount(8)`, tmpfs size option,
        for the accepted syntax.
      '';
    };
@@ -307,7 +310,7 @@ in
      example = "256m";
      type = types.str;
      description = ''
        Size limit for the /dev/shm tmpfs. Look at mount(8), tmpfs size option,
        Size limit for the /dev/shm tmpfs. Look at {manpage}`mount(8)`, tmpfs size option,
        for the accepted syntax.
      '';
    };
@@ -317,7 +320,7 @@ in
      example = "256m";
      type = types.str;
      description = ''
        Size limit for the /run tmpfs. Look at mount(8), tmpfs size option,
        Size limit for the /run tmpfs. Look at {manpage}`mount(8)`, tmpfs size option,
        for the accepted syntax.
      '';
    };