You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
654 B

---
# The size of the ESP partition to be created
disk_egbl_esp_size: "{{ 512 * 1024 * 1024 }}"
# btrfs subvolumes are laid out in a flat fashion:
#
# toplevel (default subvolume, not mounted)
# +-- @ (to be mounted at /)
# +-- @home (to be mmounted at /home)
# +-- ...
#
disk_egbl_btrfs_subvolumes: "{{ disk_egbl_core_btrfs_subvolumes + disk_egbl_extra_btrfs_subvolumes }}"
# These subvolumes should always be present. DO NOT OVERRIDE.
disk_egbl_core_btrfs_subvolumes:
- name: "@"
mountpoint: /
- name: "@home"
mountpoint: /home
# Add extra subvolumes here, beginning with an @.
disk_egbl_extra_btrfs_subvolumes: []