2
0
Fork 0

vbox: fix /nix/store

This commit is contained in:
Ehmry - 2020-05-22 21:08:22 +05:30
parent db9341b0de
commit 47a3689f7e
1 changed files with 12 additions and 4 deletions

View File

@ -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"
}
}
]
}
]
}