From 85db381a7e13a6e1d0f0be4f776880909dcdd1f0 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Sat, 7 Oct 2023 22:40:28 +0200 Subject: [PATCH] Fixup altra's mountpoints Signed-off-by: magic_rb --- nixos/systems/altra/filesystems.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/systems/altra/filesystems.nix b/nixos/systems/altra/filesystems.nix index dbdb42b..e2f9a29 100644 --- a/nixos/systems/altra/filesystems.nix +++ b/nixos/systems/altra/filesystems.nix @@ -106,7 +106,7 @@ "persist/secret" = { type = "zfs_fs"; - mountpoint = "/var/secret"; + mountpoint = "/var/secrets"; options.mountpoint = "legacy"; mountOptions = [ "defaults" "noexec" ]; }; @@ -135,6 +135,10 @@ fsType = "tmpfs"; mountOptions = [ "defaults" "size=512M" "mode=755" "noexec" ]; }; + "/tmp" = { + fsType = "tmpfs"; + mountOptions = [ "defaults" "size=1024M" "mode=755" "exec" ]; + }; }; };