hardware.nix: replace fold with mkMerge

This commit is contained in:
Sean Buckley 2021-09-30 00:06:49 -04:00
parent a118b52a02
commit 1b87273d47

View file

@ -32,5 +32,5 @@ with lib;
type = types.enum [ "physical" "vmware" "qemu" ]; type = types.enum [ "physical" "vmware" "qemu" ];
}; };
config = fold (a: b: a // b) { } hardwareModules; config = mkMerge hardwareModules;
} }