summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hel.nix')
-rw-r--r--hel.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/hel.nix b/hel.nix
index 127367d4..15b7d4a2 100644
--- a/hel.nix
+++ b/hel.nix
@@ -510,8 +510,14 @@
510 ]; 510 ];
511 } 511 }
512 { where = "/tmp"; 512 { where = "/tmp";
513 what = "tmpfs";
514 type = "tmpfs";
513 options = lib.concatStringsSep "," 515 options = lib.concatStringsSep ","
514 ["mode=1777" "strictatime" "nosuid" "nodev" "size=16G"]; 516 ["mode=1777" "strictatime" "nosuid" "nodev" "size=16G"];
517 after = [ "swap.target" ];
518 before = [ "local-fs.target" "umount.target" ];
519 conflicts = [ "umount.target" ];
520 wantedBy = [ "local-fs.target" ];
515 } 521 }
516 ]; 522 ];
517 523