From d57cfa8e7167c7538ec12ac3f325775834e56ebc Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Wed, 7 May 2025 23:10:11 +0200 Subject: [PATCH] root file system, tmpfs, use 50% for installs on 16 GB machines --- share/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/common.nix b/share/common.nix index 42e5b62..0b902a2 100644 --- a/share/common.nix +++ b/share/common.nix @@ -122,12 +122,12 @@ in # setup the console stuff early console.earlySetup = true; - # root file system, tmpfs + # root file system, tmpfs, use 50% for installs on 16 GB machines fileSystems."/" = { device = "none"; fsType = "tmpfs"; neededForBoot = true; - options = [ "defaults" "size=25%" "mode=755" ]; + options = [ "defaults" "size=50%" "mode=755" ]; }; # my data