summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2021-01-15 00:31:14 +0100
committerGitHub <noreply@github.com>2021-01-15 00:31:14 +0100
commit3be09b94fb98961eff4d98749c74db311f931bd2 (patch)
tree16bfeefbd31c2554f9771fc388119af0d7a2e733 /nixos/modules/system
parentf08a59befc32dc7571763d663965037715c8932d (diff)
parentca7b35d2d9c276cf08d9ca8248eae004f4e9d295 (diff)
downloadnixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar.gz
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar.bz2
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar.lz
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar.xz
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.tar.zst
nixpkgs-3be09b94fb98961eff4d98749c74db311f931bd2.zip
Merge pull request #108860 from endocrimes/dani/fix-tmp
modules/boot: Specify the type for tmpfs mounts
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/tmp.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/system/boot/tmp.nix b/nixos/modules/system/boot/tmp.nix
index 837e308cbea..5bb299adb15 100644
--- a/nixos/modules/system/boot/tmp.nix
+++ b/nixos/modules/system/boot/tmp.nix
@@ -34,6 +34,7 @@ with lib;
       {
         what = "tmpfs";
         where = "/tmp";
+        type = "tmpfs";
         mountConfig.Options = [ "mode=1777" "strictatime" "rw" "nosuid" "nodev" "size=50%" ];
       }
     ];