diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-26 01:59:51 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-26 01:59:51 +0200 |
commit | 7b0fc135fd47dc760cc27c082149d438f97816fa (patch) | |
tree | dc6351537d6ffbe7a903f98a84316025f286f191 /hardware/chromebook/disks.nix | |
parent | SSH: Disable password authentication (diff) | |
download | nixos-config-7b0fc135fd47dc760cc27c082149d438f97816fa.tar.gz nixos-config-7b0fc135fd47dc760cc27c082149d438f97816fa.tar.bz2 nixos-config-7b0fc135fd47dc760cc27c082149d438f97816fa.zip |
Hardware: Remove tmpfs / size
Diffstat (limited to '')
-rw-r--r-- | hardware/chromebook/disks.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hardware/chromebook/disks.nix b/hardware/chromebook/disks.nix index 5bbbb21..865fd4d 100644 --- a/hardware/chromebook/disks.nix +++ b/hardware/chromebook/disks.nix @@ -70,7 +70,7 @@ in fileSystems."/" = { device = "none"; fsType = "tmpfs"; - options = [ "defaults" "mode=755" "size=512M" ]; + options = [ "defaults" "mode=755" ]; }; boot.initrd.luks.devices."encrypted_boot" = { |