From 33561f1934e0da6432151cf52e1108f270aa09f7 Mon Sep 17 00:00:00 2001 From: sils Date: Sat, 26 Aug 2023 10:31:04 +0200 Subject: feat(hosts/thinklappi): add /tmp mount This prevents build failures due to limited disk space --- hosts/thinklappi/basesystem.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'hosts/thinklappi/basesystem.nix') diff --git a/hosts/thinklappi/basesystem.nix b/hosts/thinklappi/basesystem.nix index 54f1daf..673c0c5 100644 --- a/hosts/thinklappi/basesystem.nix +++ b/hosts/thinklappi/basesystem.nix @@ -34,6 +34,11 @@ fsType = "tmpfs"; options = ["defaults" "size=2G" "mode=755"]; }; + "/tmp" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["defaults" "size=5G" "mode=755"]; + }; "/nix" = { device = "/dev/disk/by-label/nixos-root"; fsType = "btrfs"; -- cgit 1.4.1