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 ]; + }; }; }; }