From d6899e0670993f84a18ce11333beb97871bfff61 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 24 Oct 2022 22:43:31 -0500 Subject: [PATCH] Set operators, maybe? --- flake.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 69c954a..ae1e151 100644 --- a/flake.nix +++ b/flake.nix @@ -103,11 +103,7 @@ ); overlays.default = local_overlay; - modules = stable.lib.foldr (a: b: a ++ b) [ - (import ./modules-all) - (import ./modules-linux) - (import ./modules-darwin) - ]; + modules = (import ./modules-all) // (import ./modules-linux) // (import ./modules-darwin); packages = import ./overlays/packages.nix { pkgs = stable; }; }; }