about summary refs log tree commit diff
path: root/nixos/tests/misc.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30 13:15:29 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-30 13:18:33 +0200
commitf94f659a31d694c395cdb65e2f1925a6092d55a3 (patch)
treeb21ac22c8ef3d833bb470b4d785ae018e4bd31ff /nixos/tests/misc.nix
parent94ce6ec866a51ff8e520a1acc592f4de04b5759c (diff)
Don't require a device for tmpfs filesystems
Diffstat (limited to 'nixos/tests/misc.nix')
-rw-r--r--nixos/tests/misc.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/tests/misc.nix b/nixos/tests/misc.nix
index c03db6c433530..e1830d95b41f0 100644
--- a/nixos/tests/misc.nix
+++ b/nixos/tests/misc.nix
@@ -12,8 +12,7 @@ import ./make-test.nix {
       services.nixosManual.enable = mkOverride 0 true;
       systemd.tmpfiles.rules = [ "d /tmp 1777 root root 10d" ];
       fileSystems = mkVMOverride { "/tmp2" =
-        { device = "none";
-          fsType = "tmpfs";
+        { fsType = "tmpfs";
           options = "mode=1777,noauto";
         };
       };