nachtigall: Mount /var/lib as a separate ZFS dataset

This would help keep all application data out of the root partion by default
This commit is contained in:
Akshay Mankar 2023-10-28 14:12:31 +02:00
parent 44f301c772
commit c42fadab6d
Signed by: axeman
GPG key ID: CA08F3AB62369B89

View file

@ -18,6 +18,11 @@
fsType = "zfs";
};
fileSystems."/var/lib" =
{ device = "root_pool/data";
fsType = "zfs";
};
fileSystems."/var/lib/postgresql" =
{ device = "root_pool/data/postgresql";
fsType = "zfs";