mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
table: fix mounting devices
This commit is contained in:
parent
891836b79a
commit
4db8159a19
1 changed files with 1 additions and 3 deletions
|
@ -38,9 +38,7 @@
|
|||
partMounts = diskoLib.deepMergeMap (partition: partition._mount { inherit dev; }) config.partitions;
|
||||
in
|
||||
{
|
||||
dev = ''
|
||||
${lib.concatMapStrings (x: x.dev or "") (lib.attrValues partMounts)}
|
||||
'';
|
||||
dev = partMounts.dev or "";
|
||||
fs = partMounts.fs or { };
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue