about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-03-02 02:10:31 +0100
committeraszlig <aszlig@redmoonstudios.org>2016-03-02 02:10:31 +0100
commit60798134c952adfd068ec844296a652720134102 (patch)
treef46bf8e93b1fd77ea08c2a6fcd04bd85f096251c /lib
parent05505cfae51222eeb33748c72c1c2f9faf684ea3 (diff)
lib/call-machine: Use a list for FS options
In NixOS/nixpkgs@edb8991 the version got bumped to 16.09, so
fileSystem.*.options no longer takes a plain string.

The original change has been introduced in NixOS/nixpkgs@3c5fca9 and we
already use it everywhere in vuizvui but not for the ISO image builder
yet.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/call-machine.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/call-machine.nix b/lib/call-machine.nix
index 0844e4eb..2030d3e6 100644
--- a/lib/call-machine.nix
+++ b/lib/call-machine.nix
@@ -26,7 +26,7 @@ let
           "/boot" = lib.mkForce (fscfg."/boot" or {
             device = "none";
             fsType = "none";
-            options = "noauto";
+            options = [ "noauto" ];
           });
         };
       };