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" ]; + }; }; };