mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
mount: allow empty .dev
This commit is contained in:
parent
10e1037ad7
commit
5034d2d836
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ rec {
|
|||
in ''
|
||||
set -efux
|
||||
# first create the necessary devices
|
||||
${concatMapStrings (dev: ((attrByPath (dev ++ [ "_mount" ]) "" devices) {}).dev ) sortedDeviceList}
|
||||
${concatMapStrings (dev: ((attrByPath (dev ++ [ "_mount" ]) "" devices) {}).dev or "") sortedDeviceList}
|
||||
|
||||
# and then mount the filesystems in alphabetical order
|
||||
${concatStrings (attrValues fsMounts)}
|
||||
|
|
Loading…
Reference in a new issue