flake: extract homeManagerModules as proper submodule

main
Felix Stupp 1 year ago
parent 9bc3059e6b
commit aa9ab0ba2f
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -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;

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

Loading…
Cancel
Save