nixos/qemu-vm: set permissions for tmpfs root

World-writable fs root breaks ssh key authentication (and likely other
programs).
This commit is contained in:
Illia Ostapyshyn 2024-12-09 16:44:16 +01:00
parent 7acb5c5b59
commit 43300fe72a
No known key found for this signature in database
GPG key ID: 9550CFBA282F83AE

View file

@ -1267,6 +1267,7 @@ in
{
device = "tmpfs";
fsType = "tmpfs";
options = [ "mode=755" ];
}
else
{