From 33fe857817738908f2ae5a1b977f779385346951 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 28 Aug 2022 16:58:07 +0200 Subject: [PATCH] hosts/TITAN: mount bigger tmpfs on /tmp for builds --- hosts/TITAN/system.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/TITAN/system.nix b/hosts/TITAN/system.nix index 7828668..da73b17 100644 --- a/hosts/TITAN/system.nix +++ b/hosts/TITAN/system.nix @@ -52,5 +52,8 @@ services.xserver.displayManager.gdm.autoSuspend = false; boot.supportedFilesystems = [ "bcachefs" ]; + + boot.tmpOnTmpfs = true; + boot.tmpOnTmpfsSize = "75%"; }