changes to see if they work
This commit is contained in:
parent
b8ec436a63
commit
1e22562228
1 changed files with 16 additions and 13 deletions
|
@ -1,7 +1,3 @@
|
||||||
# SPDX-FileCopyrightText: no
|
|
||||||
# SPDX-License-Identifier: CC0-1.0
|
|
||||||
#
|
|
||||||
#
|
|
||||||
extraMounts:
|
extraMounts:
|
||||||
- device: proc
|
- device: proc
|
||||||
fs: proc
|
fs: proc
|
||||||
|
@ -11,32 +7,35 @@ extraMounts:
|
||||||
mountPoint: /sys
|
mountPoint: /sys
|
||||||
- device: /dev
|
- device: /dev
|
||||||
mountPoint: /dev
|
mountPoint: /dev
|
||||||
options: bind
|
options: [ bind ]
|
||||||
- device: tmpfs
|
- device: tmpfs
|
||||||
fs: tmpfs
|
fs: tmpfs
|
||||||
mountPoint: /run
|
mountPoint: /run
|
||||||
- device: /run/udev
|
- device: /run/udev
|
||||||
mountPoint: /run/udev
|
mountPoint: /run/udev
|
||||||
options: bind
|
options: [ bind ]
|
||||||
|
|
||||||
extraMountsEfi:
|
|
||||||
- device: efivarfs
|
- device: efivarfs
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
|
efi: true
|
||||||
# Btrfs subvolumes to create if root filesystem is on btrfs volume.
|
|
||||||
# If mountpoint is mounted already to another partition, it is ignored.
|
|
||||||
# Separate subvolume for swapfile is handled separately and automatically.
|
|
||||||
|
|
||||||
btrfsSubvolumes:
|
btrfsSubvolumes:
|
||||||
- mountPoint: /
|
- mountPoint: /
|
||||||
subvolume: /@
|
subvolume: /@
|
||||||
- mountPoint: /home
|
- mountPoint: /home
|
||||||
subvolume: /@home
|
subvolume: /@home
|
||||||
|
- mountPoint: /root
|
||||||
|
subvolume: /@root
|
||||||
|
- mountPoint: /srv
|
||||||
|
subvolume: /@srv
|
||||||
- mountPoint: /var/cache
|
- mountPoint: /var/cache
|
||||||
subvolume: /@cache
|
subvolume: /@cache
|
||||||
- mountPoint: /var/log
|
- mountPoint: /var/log
|
||||||
subvolume: /@log
|
subvolume: /@log
|
||||||
|
- mountPoint: /var/tmp
|
||||||
|
subvolume: /@tmp
|
||||||
|
|
||||||
|
btrfsSwapSubvol: /@swap
|
||||||
|
|
||||||
mountOptions:
|
mountOptions:
|
||||||
- filesystem: default
|
- filesystem: default
|
||||||
|
@ -44,6 +43,10 @@ mountOptions:
|
||||||
- filesystem: efi
|
- filesystem: efi
|
||||||
options: [ defaults, umask=0077 ]
|
options: [ defaults, umask=0077 ]
|
||||||
- filesystem: btrfs
|
- filesystem: btrfs
|
||||||
options: [ defaults, noatime, compress=lzo ]
|
options: [ defaults, noatime, compress=zstd ]
|
||||||
- filesystem: btrfs_swap
|
- filesystem: btrfs_swap
|
||||||
options: [ defaults, noatime ]
|
options: [ defaults, noatime ]
|
||||||
|
- filesystem: ext4
|
||||||
|
options: [ defaults, noatime, commit=60 ]
|
||||||
|
- filesystem: xfs
|
||||||
|
options: [ defaults, lazytime, noatime, attr2, inode64, logbsize=256k, noquota ]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue