···33 # Automagically imports libs from "/lib/lib-name" and exposes them to the `flake.lib` output.
44 ./lib.nix
5566- # Exposes nixosModules and homeModules on flake outputs.
77- ./modules.nix
88-96 # Automagically imports systems from "/systems/arch-classname/system-name".
107 ./systems.nix
118 ];
+1
modules/flake/systems.nix
···1818 (lib.optionals (class == "nixos") [
1919 inputs.home-manager.nixosModules.default
2020 inputs.sops-nix.nixosModules.sops
2121+ inputs.minegrub-theme.nixosModules.default
2122 ])
2223 ++ (self.lib.dirToModuleList ../${class}); # Import modules based on current classname.
2324 };