From 60798134c952adfd068ec844296a652720134102 Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 2 Mar 2016 02:10:31 +0100 Subject: 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 --- lib/call-machine.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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" ]; }); }; }; -- cgit 1.4.1