diff --git a/types/table.nix b/types/table.nix index fee81a5..b47ed29 100644 --- a/types/table.nix +++ b/types/table.nix @@ -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 { }; }; };