From 4db8159a19facd466dd741ff345395832be9cb7e Mon Sep 17 00:00:00 2001 From: lassulus Date: Tue, 21 Mar 2023 06:34:11 +0100 Subject: [PATCH] table: fix mounting devices --- types/table.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 { }; }; };