diff --git a/modules/tasks/filesystems.nix b/modules/tasks/filesystems.nix index d6ec640ac383..8225a618325e 100644 --- a/modules/tasks/filesystems.nix +++ b/modules/tasks/filesystems.nix @@ -21,7 +21,7 @@ let newDevices= ${flip concatMapStrings fileSystems (fs: '' - for theContinueKeyword in theFollowingCode; do + for dummy in x; do # make `continue' work mountPoint='${fs.mountPoint}' device='${if fs.device != null then fs.device else "/dev/disk/by-label/${fs.label}"}' fsType='${fs.fsType}' @@ -94,7 +94,7 @@ let '' } - if ${mount}/bin/mount -t "$fsType" -o "$options" "$device" "$mountPoint"; then + if ${mount}/bin/mount -t "$fsType" -o "${fs.options}" "$device" "$mountPoint"; then newDevices=1 fi done