diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-25 13:25:57 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-09-25 13:29:26 +0200 |
commit | 6ca37e3d0351c1d729474665603fa8321d2d4268 (patch) | |
tree | 5d77b0437db9fd54f0187ab9445730889f6b0e11 | |
parent | SSH: Change listening port to port 22 (diff) | |
download | nixos-config-6ca37e3d0351c1d729474665603fa8321d2d4268.tar.gz nixos-config-6ca37e3d0351c1d729474665603fa8321d2d4268.tar.bz2 nixos-config-6ca37e3d0351c1d729474665603fa8321d2d4268.zip |
Hardware: / tfmps mount: Mount with 755 perms
-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"; |