optimize filesystem mount flags
All checks were successful
checks-impure / test (pull_request) Successful in 2m8s
checks / test (pull_request) Successful in 2m41s

perf!
This commit is contained in:
Jörg Thalheim 2024-02-14 11:20:18 +01:00
parent 7a3fcd3deb
commit 7cab50c088

View File

@ -50,12 +50,12 @@ let
"/" = {
device = "/dev/vda";
fsType = "ext4";
options = [ "defaults" "x-systemd.makefs" ];
options = [ "defaults" "x-systemd.makefs" "nobarrier" "noatime" "nodiratime" "data=writeback" "discard" ];
};
"/vmstate" = {
device = "/dev/vdb";
options = [ "x-systemd.makefs" ];
options = [ "x-systemd.makefs" "noatime" "nodiratime" "discard" ];
noCheck = true;
fsType = "ext4";
};