diff options
author | tzlil <tzlils@protonmail.com> | 2023-03-12 15:04:29 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-03-12 15:04:29 +0200 |
commit | f266d1b0d7c2f9c5c285af539fefe8d5ac96c479 (patch) | |
tree | 015baf8a6ede21f63f0053e84438e212de0e1819 | |
parent | 453502b30a8ee6c68a4fab076668738141bb5572 (diff) |
fix tmpfs root permissions
-rw-r--r-- | hosts/laptop/cfg.nix | 1 |
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" = { |