Skip to content

Commit

Permalink
Merge pull request #108860 from endocrimes/dani/fix-tmp
Browse files Browse the repository at this point in the history
modules/boot: Specify the type for tmpfs mounts
  • Loading branch information
andir committed Jan 14, 2021
2 parents f08a59b + ca7b35d commit 3be09b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/system/boot/tmp.nix
Expand Up @@ -34,6 +34,7 @@ with lib;
{
what = "tmpfs";
where = "/tmp";
type = "tmpfs";
mountConfig.Options = [ "mode=1777" "strictatime" "rw" "nosuid" "nodev" "size=50%" ];
}
];
Expand Down

0 comments on commit 3be09b9

Please sign in to comment.