nixos/boot.tmp: fix description rendering

This commit is contained in:
Acid Bong
2025-11-06 17:37:32 +02:00
parent f6544bb5ac
commit d24ec930d5

View File

@@ -41,10 +41,10 @@ in
default = "never";
example = "within_size";
description = ''
never - Do not allocate huge memory pages. This is the default.
always - Attempt to allocate huge memory page every time a new page is needed.
within_size - Only allocate huge memory pages if it will be fully within i_size. Also respect madvise(2) hints. Recommended.
advise - Only allocate huge memory pages if requested with madvise(2).
- `never` - Do not allocate huge memory pages. This is the default.
- `always` - Attempt to allocate huge memory page every time a new page is needed.
- `within_size` - Only allocate huge memory pages if it will be fully within i_size. Also respect madvise(2) hints. Recommended.
- `advise` - Only allocate huge memory pages if requested with madvise(2).
'';
};