56 lines
No EOL
1.2 KiB
Text
56 lines
No EOL
1.2 KiB
Text
# Partitioning module configuration for Debian Atomic Desktop
|
|
# This configures how Calamares will partition the target disk
|
|
|
|
# Default partitioning scheme
|
|
defaultPartitionTableType: gpt
|
|
|
|
# Default file system types
|
|
defaultFileSystemType: ext4
|
|
defaultFsType: ext4
|
|
|
|
# Available file system types
|
|
availableFileSystemTypes:
|
|
- ext4
|
|
- btrfs
|
|
- xfs
|
|
- f2fs
|
|
|
|
# Partitioning schemes
|
|
partitionLayout:
|
|
# EFI system partition
|
|
- name: "EFI System Partition"
|
|
size: 512M
|
|
filesystem: vfat
|
|
mountPoint: /boot/efi
|
|
flags:
|
|
- boot
|
|
- esp
|
|
|
|
# Boot partition for bootc
|
|
- name: "Boot Partition"
|
|
size: 1G
|
|
filesystem: ext4
|
|
mountPoint: /boot
|
|
flags:
|
|
- boot
|
|
|
|
# Root partition (will be replaced by bootc)
|
|
- name: "Root Partition"
|
|
size: 100%
|
|
filesystem: ext4
|
|
mountPoint: /
|
|
flags:
|
|
- root
|
|
|
|
# Swap configuration
|
|
swap:
|
|
# Use swap file instead of partition
|
|
useSwapFile: true
|
|
swapFileSize: 4G
|
|
|
|
# Bootloader configuration
|
|
bootloader:
|
|
# Install bootloader to the first disk
|
|
installPath: /dev/sda
|
|
# Use systemd-boot for EFI
|
|
bootloader: systemd-boot |