disko/vanadium: disable compression on root and home

This commit is contained in:
Primrose 2025-05-10 12:51:14 +02:00
parent f4d42e7e1d
commit a37ac14681
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -70,12 +70,12 @@
subvolumes = {
"/root" = {
mountOptions = ["compress=zstd" "noatime"];
mountOptions = ["noatime"];
mountpoint = "/";
};
"/home" = {
mountOptions = ["compress=zstd" "noatime"];
mountOptions = ["noatime"];
mountpoint = "/home";
};