This commit is contained in:
Greg Burd 2023-09-30 16:13:17 -04:00
parent 5ac9d748df
commit 7350f93a68
No known key found for this signature in database
GPG key ID: 1FC1E7793410DE46

View file

@ -50,8 +50,8 @@ in
mountpoint = "/persist";
mountOptions = [ "compress=zstd" ];
};
"var/logs" = {
mountpoint = "/var/logs";
"log" = {
mountpoint = "/var/log";
mountOptions = [ "compress=zstd" "noatime" ];
};
};
@ -65,4 +65,5 @@ in
};
fileSystems."/persist".neededForBoot = true;
fileSystems."/var/log".neededForBoot = true;
}