2023-10-31 12:23:59 -01:00
|
|
|
# SPDX-FileCopyrightText: no
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
#
|
2022-11-16 13:07:06 -01:00
|
|
|
# Mount filesystems in the target (generally, before treating the
|
2023-10-31 12:23:59 -01:00
|
|
|
# target as a usable chroot / "live" system).
|
2022-11-16 13:07:06 -01:00
|
|
|
---
|
2023-10-31 12:23:59 -01:00
|
|
|
|
2022-11-16 13:07:06 -01:00
|
|
|
extraMounts:
|
|
|
|
- device: proc
|
|
|
|
fs: proc
|
|
|
|
mountPoint: /proc
|
|
|
|
- device: sys
|
|
|
|
fs: sysfs
|
|
|
|
mountPoint: /sys
|
|
|
|
- device: /dev
|
|
|
|
mountPoint: /dev
|
|
|
|
options: bind
|
|
|
|
- device: tmpfs
|
|
|
|
fs: tmpfs
|
|
|
|
mountPoint: /run
|
|
|
|
- device: /run/udev
|
|
|
|
mountPoint: /run/udev
|
|
|
|
options: bind
|
2023-11-19 15:45:41 -01:00
|
|
|
|
|
|
|
extraMountsEfi:
|
2022-11-16 13:07:06 -01:00
|
|
|
- device: efivarfs
|
|
|
|
fs: efivarfs
|
|
|
|
mountPoint: /sys/firmware/efi/efivars
|
2023-10-31 12:23:59 -01:00
|
|
|
|
|
|
|
btrfsSubvolumes:
|
|
|
|
- mountPoint: /
|
|
|
|
subvolume: /@
|
|
|
|
- mountPoint: /home
|
|
|
|
subvolume: /@home
|
|
|
|
- mountPoint: /var/cache
|
|
|
|
subvolume: /@cache
|
|
|
|
- mountPoint: /var/log
|
|
|
|
subvolume: /@log
|