mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
* Declaring fileSystems as "loa" (list or attribute set) is bad because it can
cause the filesystems to be reordered. During stage 1, the ordering of filesystems is sensitive. (In stage 2, mountall ensures that filesystems are mounted in the right order.) svn path=/nixos/trunk/; revision=30046
This commit is contained in:
parent
0fce64bb37
commit
021409b21f
@ -50,8 +50,7 @@ in
|
||||
<command>mkdir -p</command> .
|
||||
";
|
||||
|
||||
type = types.nullOr (types.loaOf types.optionSet);
|
||||
apply = x: attrValues x;
|
||||
type = types.nullOr (types.list types.optionSet);
|
||||
|
||||
options = {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user