summary refs log tree commit diff
path: root/nixos/modules/installer
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/modules/installer
parent94ce6ec866a51ff8e520a1acc592f4de04b5759c (diff)
downloadnixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar.gz
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar.bz2
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar.lz
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar.xz
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.tar.zst
nixlib-f94f659a31d694c395cdb65e2f1925a6092d55a3.zip
Don't require a device for tmpfs filesystems
Diffstat (limited to 'nixos/modules/installer')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index 28c42d64f6fb..6250fac0f0bb 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -179,7 +179,6 @@ in
 
     fileSystems."/" =
       { fsType = "tmpfs";
-        device = "none";
         options = "mode=0755";
       };
 
@@ -201,7 +200,6 @@ in
 
     fileSystems."/nix/.rw-store" =
       { fsType = "tmpfs";
-        device = "none";
         options = "mode=0755";
         neededForBoot = true;
       };