Just swapped quotation marks. Easier to copy paste into JSON syntax highlighting.

This commit is contained in:
Anton Hvornum 2021-11-05 16:52:01 +01:00
parent 522ca2e41c
commit 5db146a0eb
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 4 additions and 4 deletions

View File

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