diff options
-rw-r--r-- | hardware/chromebook/disks.nix | 1 | ||||
-rw-r--r-- | hardware/laptop/disks.nix | 1 | ||||
-rw-r--r-- | hardware/virtualbox/disks.nix | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/hardware/chromebook/disks.nix b/hardware/chromebook/disks.nix index ad0e014..5bbbb21 100644 --- a/hardware/chromebook/disks.nix +++ b/hardware/chromebook/disks.nix @@ -70,6 +70,7 @@ in fileSystems."/" = { device = "none"; fsType = "tmpfs"; + options = [ "defaults" "mode=755" "size=512M" ]; }; boot.initrd.luks.devices."encrypted_boot" = { diff --git a/hardware/laptop/disks.nix b/hardware/laptop/disks.nix index 07618df..b04468a 100644 --- a/hardware/laptop/disks.nix +++ b/hardware/laptop/disks.nix @@ -15,6 +15,7 @@ fileSystems."/" = { device = "none"; fsType = "tmpfs"; + options = [ "defaults" "mode=755" "size=512M" ]; }; fileSystems."/boot" = { diff --git a/hardware/virtualbox/disks.nix b/hardware/virtualbox/disks.nix index 6ba15ec..df2683f 100644 --- a/hardware/virtualbox/disks.nix +++ b/hardware/virtualbox/disks.nix @@ -15,6 +15,7 @@ fileSystems."/" = { device = "none"; fsType = "tmpfs"; + options = [ "defaults" "mode=755" "size=512M" ]; }; boot.initrd.luks.devices."encrypted_boot".device = "/dev/disk/by-partlabel/boot"; |