From 5c35f00802fc40605d216759b2791c098413b6f0 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 10 Feb 2024 19:30:52 +0100 Subject: fix(sys/disks): Differentiate the space limit of '/' an '/tmp' --- sys/disks/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/disks/default.nix b/sys/disks/default.nix index d238d89a..2d88f57e 100644 --- a/sys/disks/default.nix +++ b/sys/disks/default.nix @@ -96,7 +96,11 @@ in { nodev = { "/" = { fsType = "tmpfs"; - mountOptions = ["defaults" "size=8G" "mode=755"]; + mountOptions = ["defaults" "size=4G" "mode=755"]; + }; + "/tmp" = { + fsType = "tmpfs"; + mountOptions = ["defaults" "size=16G" "mode=755"]; }; }; }; -- cgit 1.4.1