summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authortzlil <tzlils@protonmail.com>2023-03-12 15:04:29 +0200
committertzlil <tzlils@protonmail.com>2023-03-12 15:04:29 +0200
commitf266d1b0d7c2f9c5c285af539fefe8d5ac96c479 (patch)
tree015baf8a6ede21f63f0053e84438e212de0e1819 /hosts
parent453502b30a8ee6c68a4fab076668738141bb5572 (diff)
fix tmpfs root permissions
Diffstat (limited to 'hosts')
-rw-r--r--hosts/laptop/cfg.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/hosts/laptop/cfg.nix b/hosts/laptop/cfg.nix
index 28b062d..32f60fe 100644
--- a/hosts/laptop/cfg.nix
+++ b/hosts/laptop/cfg.nix
@@ -60,6 +60,7 @@
     fileSystems."/" = {
       device = "none";
       fsType = "tmpfs";
+      options = ["noexec" "defaults" "size=2G" "mode=755"];
     };
 
     fileSystems."/boot" = {