diff options
author | Soispha <soispha@vhack.eu> | 2023-07-15 21:41:31 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-15 21:41:31 +0200 |
commit | fdec4559b381269967ff33472271f5c3740227bc (patch) | |
tree | b4be0b172bd865794e734a8da61ff506a59ac7a2 | |
parent | Feat(system/boot): Enable lanzaboote (and with it secure boot) (diff) | |
download | nixos-config-fdec4559b381269967ff33472271f5c3740227bc.tar.gz nixos-config-fdec4559b381269967ff33472271f5c3740227bc.zip |
Fix(system/disks): Increase default tempfs size to accommodate big builds
-rw-r--r-- | system/disks/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/disks/default.nix b/system/disks/default.nix index 28797f2c..56260c7a 100644 --- a/system/disks/default.nix +++ b/system/disks/default.nix @@ -95,7 +95,7 @@ in { nodev = { "/" = { fsType = "tmpfs"; - mountOptions = ["defaults" "size=4G" "mode=755"]; + mountOptions = ["defaults" "size=8G" "mode=755"]; }; }; }; |