From 1b87273d47f4464eca657f7edb38680fd5de892c Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Thu, 30 Sep 2021 00:06:49 -0400 Subject: [PATCH] hardware.nix: replace fold with mkMerge --- modules/hardware.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hardware.nix b/modules/hardware.nix index 05a3dd9..c7223f9 100644 --- a/modules/hardware.nix +++ b/modules/hardware.nix @@ -32,5 +32,5 @@ with lib; type = types.enum [ "physical" "vmware" "qemu" ]; }; - config = fold (a: b: a // b) { } hardwareModules; + config = mkMerge hardwareModules; }