2023-10-31 12:20:41 -01:00
|
|
|
# SPDX-FileCopyrightText: no
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
#
|
2022-11-08 16:42:01 -01:00
|
|
|
# Mount filesystems in the target (generally, before treating the
|
2023-10-31 12:20:41 -01:00
|
|
|
# target as a usable chroot / "live" system).
|
2022-11-08 16:42:01 -01:00
|
|
|
---
|
2023-10-31 12:20:41 -01:00
|
|
|
|
2022-11-08 16:42:01 -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:44:22 -01:00
|
|
|
|
|
|
|
extraMountsEfi:
|
2022-11-08 16:42:01 -01:00
|
|
|
- device: efivarfs
|
|
|
|
fs: efivarfs
|
|
|
|
mountPoint: /sys/firmware/efi/efivars
|
2023-10-31 12:20:41 -01:00
|
|
|
|
|
|
|
btrfsSubvolumes:
|
|
|
|
- mountPoint: /
|
|
|
|
subvolume: /@
|
|
|
|
- mountPoint: /home
|
|
|
|
subvolume: /@home
|
|
|
|
- mountPoint: /var/cache
|
|
|
|
subvolume: /@cache
|
|
|
|
- mountPoint: /var/log
|
|
|
|
subvolume: /@log
|