about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-05 14:30:00 +0100
committerene <ene@sils.li>2023-03-05 14:30:00 +0100
commitf8169f95d682fc2abb8bf3962ade2cf151110a6e (patch)
tree3ae19723ee1c737aee067434f3054fcda2269001
parentFix(system/fonts): Use full nerdfont (diff)
downloadnixos-config-f8169f95d682fc2abb8bf3962ade2cf151110a6e.tar.gz
nixos-config-f8169f95d682fc2abb8bf3962ade2cf151110a6e.zip
Fix(system/fslayout): Add 2G to the / size
Diffstat (limited to '')
-rw-r--r--system/fileSystemLayouts/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix
index d71ba7ae..215f01d0 100644
--- a/system/fileSystemLayouts/default.nix
+++ b/system/fileSystemLayouts/default.nix
@@ -30,7 +30,7 @@ in {
       "/" = {
         device = "none";
         fsType = "tmpfs";
-        options = ["defaults" "size=2G" "mode=755"];
+        options = ["defaults" "size=4G" "mode=755"];
       };
       "/nix" = {
         device = cfg.mainDisk;