diff --git a/flake.nix b/flake.nix index 840b357..02c6b1d 100644 --- a/flake.nix +++ b/flake.nix @@ -66,11 +66,7 @@ devShells = importFlakeModWithSystem ./nix/devShells; - homeManagerModules = { - # combination of all my custom modules - # these should not change anything until you enable their custom options - default.imports = [ ./nix/hmModules ]; - }; + homeManagerModules = importFlakeMod ./nix/hmModules; lib = outputs.libAnchors // importFlakeMod ./nix/lib; diff --git a/nix/hmModules/default.nix b/nix/hmModules/default.nix index 3a8ff53..a3a4d4b 100644 --- a/nix/hmModules/default.nix +++ b/nix/hmModules/default.nix @@ -1,6 +1,11 @@ +{ ... }@flakeArg: { - imports = [ + + # combination of all my custom modules + # these should not change anything until you enable their custom options + default.imports = [ # directories ./extends ]; + }