From e7f37fe41ab4e7c6671ed42718498bae2366a296 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Fri, 22 May 2020 21:08:22 +0530 Subject: [PATCH] vbox: fix /nix/store --- nixos-modules/dhall/vbox-guest.dhall | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/nixos-modules/dhall/vbox-guest.dhall b/nixos-modules/dhall/vbox-guest.dhall index dfa4481..12e9793 100644 --- a/nixos-modules/dhall/vbox-guest.dhall +++ b/nixos-modules/dhall/vbox-guest.dhall @@ -125,10 +125,18 @@ let toVbox = { name = "dir" , attributes = toMap { name = "nix" } , content = - [ XML.leaf - { name = "fs" - , attributes = toMap - { writeable = "no", label = "nix" } + [ XML.element + { name = "dir" + , attributes = toMap { name = "store" } + , content = + [ XML.leaf + { name = "fs" + , attributes = toMap + { writeable = "no" + , label = "nix" + } + } + ] } ] }