From 482d42cc05f8e1baddc3b4a701ba68636a407757 Mon Sep 17 00:00:00 2001 From: electria Date: Fri, 1 May 2026 14:42:59 -0700 Subject: [PATCH] docs(system): explain /home/tmp --- defaults/system.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/defaults/system.nix b/defaults/system.nix index 6811152..e37b795 100644 --- a/defaults/system.nix +++ b/defaults/system.nix @@ -52,6 +52,9 @@ in tmpfsHugeMemoryPages = "within_size"; }; + # this is useful not only for having a user named "tmp" + # but also if any user wants to use a temporary directory, + # it's much nicer than /tmp because it isn't filled with system files fileSystems."/home/tmp" = lib.mkDefault { fsType = "tmpfs";