root file system, tmpfs, use 50% for installs on 16 GB machines

This commit is contained in:
Christoph Cullmann 2025-05-07 23:10:11 +02:00
parent 8d7a8e380b
commit d57cfa8e71
No known key found for this signature in database

View file

@ -122,12 +122,12 @@ in
# setup the console stuff early # setup the console stuff early
console.earlySetup = true; console.earlySetup = true;
# root file system, tmpfs # root file system, tmpfs, use 50% for installs on 16 GB machines
fileSystems."/" = { fileSystems."/" = {
device = "none"; device = "none";
fsType = "tmpfs"; fsType = "tmpfs";
neededForBoot = true; neededForBoot = true;
options = [ "defaults" "size=25%" "mode=755" ]; options = [ "defaults" "size=50%" "mode=755" ];
}; };
# my data # my data