From 72ca3059cce9f480946adbd9b6d729e772a7726c Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 14 Aug 2024 10:40:14 +0200 Subject: fix(disks): Increase root tmpfs size to 6GB The 2GB are just not enough. --- system/disks/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/disks/default.nix b/system/disks/default.nix index 8b01e08..3ae682c 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -67,7 +67,7 @@ in { nodev = { "/" = { fsType = "tmpfs"; - mountOptions = ["defaults" "size=2G" "mode=755"]; + mountOptions = ["defaults" "size=6G" "mode=755"]; }; }; }; -- cgit 1.4.1