From 9a7b7bc29cc9e5b8a6e4f3a134f4de774001f01c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 24 Oct 2022 22:32:13 -0500 Subject: [PATCH] Try to improve modules? --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 72e7cf4..daef921 100644 --- a/flake.nix +++ b/flake.nix @@ -103,10 +103,10 @@ ); overlays.default = local_overlay; - modules = import [ - ./modules-all - ./modules-linux - ./modules-darwin + modules = [ + (import ./modules-all) + (import ./modules-linux) + (import ./modules-darwin) ]; packages = import ./overlays/packages.nix { pkgs = stable; }; };