From 753b34592ca486048399dce37fd4d9b6f69269db Mon Sep 17 00:00:00 2001 From: Gonne Date: Wed, 26 Feb 2025 13:47:32 +0100 Subject: [PATCH] Increase root file system to make space for /tmp folder which needs lots of space during builds --- nixos/machines/nodens/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/machines/nodens/hardware-configuration.nix b/nixos/machines/nodens/hardware-configuration.nix index 31b5450..ebb45bc 100644 --- a/nixos/machines/nodens/hardware-configuration.nix +++ b/nixos/machines/nodens/hardware-configuration.nix @@ -7,7 +7,7 @@ fileSystems."/" = { device = "root"; fsType = "tmpfs"; - options = ["size=1G" "mode=755"]; + options = ["size=10G" "mode=755"]; }; # Different than usual names in order to automount other VMs fileSystems."/persist" = {