diff options
| author | Baitinq <[email protected]> | 2022-09-26 01:59:51 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-26 01:59:51 +0200 |
| commit | 4a3960f8f0d54e8d31bffd48b9ffe0614e4f9c96 (patch) | |
| tree | b2a805f6f1764b5ccb27761dbd41b3ced517edc0 /hardware/virtualbox | |
| parent | SSH: Disable password authentication (diff) | |
| download | nixos-config-4a3960f8f0d54e8d31bffd48b9ffe0614e4f9c96.tar.gz nixos-config-4a3960f8f0d54e8d31bffd48b9ffe0614e4f9c96.tar.bz2 nixos-config-4a3960f8f0d54e8d31bffd48b9ffe0614e4f9c96.zip | |
Hardware: Remove tmpfs / size
Diffstat (limited to 'hardware/virtualbox')
| -rw-r--r-- | hardware/virtualbox/disks.nix | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |