mirror of
https://github.com/nix-community/disko.git
synced 2026-01-15 10:48:38 +01:00
Merge pull request #909 from nix-community/remove-lib-mdDoc
tree-wide: Remove all uses of lib.mdDoc
This commit is contained in:
commit
785c1e02c7
2 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ let
|
|||
priority = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.int;
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
description = ''
|
||||
Specify the priority of the swap file. Priority is a value between 0 and 32767.
|
||||
Higher numbers indicate higher priority.
|
||||
null lets the kernel choose a priority, which will show up as a negative value.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
default = null;
|
||||
example = "once";
|
||||
type = lib.types.nullOr (lib.types.enum [ "once" "pages" "both" ]);
|
||||
description = lib.mdDoc ''
|
||||
description = ''
|
||||
Specify the discard policy for the swap device. If "once", then the
|
||||
whole swap space is discarded at swapon invocation. If "pages",
|
||||
asynchronous discard on freed pages is performed, before returning to
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
priority = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.int;
|
||||
default = null;
|
||||
description = lib.mdDoc ''
|
||||
description = ''
|
||||
Specify the priority of the swap device. Priority is a value between 0 and 32767.
|
||||
Higher numbers indicate higher priority.
|
||||
null lets the kernel choose a priority, which will show up as a negative value.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue