Merge pull request #108860 from endocrimes/dani/fix-tmp

modules/boot: Specify the type for tmpfs mounts
This commit is contained in:
Andreas Rammhold 2021-01-15 00:31:14 +01:00 committed by GitHub
commit 3be09b94fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,7 @@ with lib;
{
what = "tmpfs";
where = "/tmp";
type = "tmpfs";
mountConfig.Options = [ "mode=1777" "strictatime" "rw" "nosuid" "nodev" "size=50%" ];
}
];