From 3ece7481167282dee7be10c1cff53ad870a4fa2f Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 30 Jun 2025 14:51:13 -0500 Subject: [PATCH] updates to exported modules --- flake.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 8fc501d..1a5db45 100644 --- a/flake.nix +++ b/flake.nix @@ -55,9 +55,10 @@ # Export modules for reuse in other flakes homeManagerModules = { - default = ./home.nix; - john-config = ./home.nix; - options-module = optionsModule; + default = { ... }: { + inherit pkgs; + modules = [ ./home.nix optionsModule ]; + }; }; }; }