diff options
author | sils <sils@sils.li> | 2023-08-26 10:31:04 +0200 |
---|---|---|
committer | sils <sils@sils.li> | 2023-08-26 10:31:04 +0200 |
commit | 33561f1934e0da6432151cf52e1108f270aa09f7 (patch) | |
tree | 696e8d5c4e91f274fea6be814620b58dfc25c4a5 /hosts | |
parent | fix(sys/packages): add nerdfonts (diff) | |
download | nix-config-33561f1934e0da6432151cf52e1108f270aa09f7.tar.gz nix-config-33561f1934e0da6432151cf52e1108f270aa09f7.zip |
feat(hosts/thinklappi): add /tmp mount
This prevents build failures due to limited disk space
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/thinklappi/basesystem.nix | 5 |
1 files changed, 5 insertions, 0 deletions
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"; |