examples: cleanup a bit

This commit is contained in:
lassulus 2022-12-24 10:35:03 +01:00
parent 192f9cc416
commit 12c7e608ed
2 changed files with 1 additions and 5 deletions

View File

@ -25,7 +25,6 @@
start = "100MiB"; start = "100MiB";
end = "-1G"; end = "-1G";
part-type = "primary"; part-type = "primary";
bootable = true;
content = { content = {
type = "filesystem"; type = "filesystem";
format = "ext4"; format = "ext4";
@ -33,12 +32,11 @@
}; };
} }
{ {
name = "root"; name = "swap";
type = "partition"; type = "partition";
start = "-1G"; start = "-1G";
end = "100%"; end = "100%";
part-type = "primary"; part-type = "primary";
bootable = true;
content = { content = {
type = "swap"; type = "swap";
randomEncryption = true; randomEncryption = true;

View File

@ -49,7 +49,6 @@
zpool = { zpool = {
zroot = { zroot = {
type = "zpool"; type = "zpool";
rootFsOptions.mountpoint = "none";
datasets = { datasets = {
"root" = { "root" = {
zfs_type = "filesystem"; zfs_type = "filesystem";
@ -58,7 +57,6 @@
"root/zfs_fs" = { "root/zfs_fs" = {
zfs_type = "filesystem"; zfs_type = "filesystem";
mountpoint = "/zfs_fs"; mountpoint = "/zfs_fs";
options.mountpoint = "/zfs_fs";
options."com.sun:auto-snapshot" = "true"; options."com.sun:auto-snapshot" = "true";
}; };
}; };