From 3f7cc2c7d361c3dd75b1a20248e4395642b9388a Mon Sep 17 00:00:00 2001 From: Baitinq Date: Sun, 25 Sep 2022 13:25:57 +0200 Subject: Hardware: / tfmps mount: Mount with 755 perms --- hardware/chromebook/disks.nix | 1 + hardware/laptop/disks.nix | 1 + hardware/virtualbox/disks.nix | 1 + 3 files changed, 3 insertions(+) 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"; -- cgit 1.4.1