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 | |
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
-rw-r--r-- | hardware/chromebook/disks.nix | 2 | ||||
-rw-r--r-- | hardware/laptop/disks.nix | 2 | ||||
-rw-r--r-- | hardware/virtualbox/disks.nix | 2 |
3 files changed, 3 insertions, 3 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" = { diff --git a/hardware/laptop/disks.nix b/hardware/laptop/disks.nix index b04468a..c2487e9 100644 --- a/hardware/laptop/disks.nix +++ b/hardware/laptop/disks.nix @@ -15,7 +15,7 @@ fileSystems."/" = { device = "none"; fsType = "tmpfs"; - options = [ "defaults" "mode=755" "size=512M" ]; + options = [ "defaults" "mode=755" ]; }; fileSystems."/boot" = { diff --git a/hardware/virtualbox/disks.nix b/hardware/virtualbox/disks.nix index df2683f..83e8ec1 100644 --- a/hardware/virtualbox/disks.nix +++ b/hardware/virtualbox/disks.nix @@ -15,7 +15,7 @@ fileSystems."/" = { device = "none"; fsType = "tmpfs"; - options = [ "defaults" "mode=755" "size=512M" ]; + options = [ "defaults" "mode=755" ]; }; boot.initrd.luks.devices."encrypted_boot".device = "/dev/disk/by-partlabel/boot"; |