Changed the default btrfs layout to have @ as /

This commit is contained in:
Anton Hvornum 2022-01-14 08:19:45 +01:00
parent c88b250eac
commit ae35f11e1a
1 changed files with 5 additions and 4 deletions

View File

@ -94,10 +94,11 @@ def suggest_single_disk_layout(block_device :BlockDevice,
# https://github.com/classy-giraffe/easy-arch/blob/main/easy-arch.sh # https://github.com/classy-giraffe/easy-arch/blob/main/easy-arch.sh
layout[block_device.path]['partitions'][1]['btrfs'] = { layout[block_device.path]['partitions'][1]['btrfs'] = {
"subvolumes" : { "subvolumes" : {
"@home" : "/home", "@":"/",
"@log" : "/var/log", "@home": "/home",
"@pkgs" : "/var/cache/pacman/pkg", "@log": "/var/log",
"@.snapshots" : "/.snapshots" "@pkg": "/var/cache/pacman/pkg",
"@.snapshots": "/.snapshots"
} }
} }
# else: # else: