|
|
|
@ -3,28 +3,37 @@
|
|
|
|
|
# etc.) use just /boot.
|
|
|
|
|
efiSystemPartition: "/boot/efi"
|
|
|
|
|
|
|
|
|
|
# Make sure an autogenerated swap partition is big enough for hibernation in
|
|
|
|
|
# automated partitioning modes. Swap can be disabled through *neverCreateSwap*.
|
|
|
|
|
# In autogenerated partitioning, allow the user to select a swap size?
|
|
|
|
|
# If there is exactly one choice, no UI is presented, and the user
|
|
|
|
|
# cannot make a choice -- this setting is used. If there is more than
|
|
|
|
|
# one choice, a UI is presented.
|
|
|
|
|
#
|
|
|
|
|
# - *neverCreateSwap* is true: no swap is created
|
|
|
|
|
# - *neverCreateSwap* is false (the default): swap is created, as follows:
|
|
|
|
|
# - *ensureSuspendToDisk* is true (default): Swap is always at least total
|
|
|
|
|
# memory size, and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
|
|
|
|
|
# Legacy settings *neverCreateSwap* and *ensureSuspendToDisk* correspond
|
|
|
|
|
# to values of *userSwapChoices* as follows:
|
|
|
|
|
# - *neverCreateSwap* is true, means [none]
|
|
|
|
|
# - *neverCreateSwap* is false, *ensureSuspendToDisk* is false, [small]
|
|
|
|
|
# - *neverCreateSwap* is false, *ensureSuspendToDisk* is true, [suspend]
|
|
|
|
|
#
|
|
|
|
|
# Autogenerated swap sizes are as follows:
|
|
|
|
|
# - *suspend*: Swap is always at least total memory size,
|
|
|
|
|
# and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
|
|
|
|
|
# from 4GiB to 8 GiB it stays steady at 8GiB, and over 8 GiB memory
|
|
|
|
|
# swap is the size of main memory.
|
|
|
|
|
# - *ensureSuspendToDisk* is false: Follows the rules above, but Swap is at
|
|
|
|
|
# - *small*: Follows the rules above, but Swap is at
|
|
|
|
|
# most 8GiB, and no more than 10% of available disk.
|
|
|
|
|
# In both cases, a fudge factor (usually 10% extra) is applied so that there
|
|
|
|
|
# is some space for administrative overhead (e.g. 8 GiB swap will allocate
|
|
|
|
|
# 8.8GiB on disk in the end).
|
|
|
|
|
#
|
|
|
|
|
# Default is true.
|
|
|
|
|
ensureSuspendToDisk: true
|
|
|
|
|
# In both cases, a fudge factor (usually 10% extra) is applied so that there
|
|
|
|
|
# is some space for administrative overhead (e.g. 8 GiB swap will allocate
|
|
|
|
|
# 8.8GiB on disk in the end).
|
|
|
|
|
userSwapChoices:
|
|
|
|
|
- none # Create no swap, use no swap
|
|
|
|
|
# - reuse # Re-use existing swap, but don't create any
|
|
|
|
|
- small # Up to 4GB
|
|
|
|
|
- suspend # At least main memory size
|
|
|
|
|
# - file # To swap file instead of partition (unsupported right now)
|
|
|
|
|
|
|
|
|
|
# Never create swap partitions in automated partitioning modes.
|
|
|
|
|
# If this is true, ensureSuspendToDisk is ignored.
|
|
|
|
|
# Default is false.
|
|
|
|
|
neverCreateSwap: false
|
|
|
|
|
# LEGACY SETTINGS (these will generate a warning)
|
|
|
|
|
# ensureSuspendToDisk: true
|
|
|
|
|
# neverCreateSwap: false
|
|
|
|
|
|
|
|
|
|
# Correctly draw nested (e.g. logical) partitions as such.
|
|
|
|
|
drawNestedPartitions: false
|
|
|
|
|