b316bc13cc
- Separate building flake-info into a new workflow that's triggered on push and on relevant pull requests - Move frontend-related files into a `frontend` subdirectory
8 lines
147 B
Nix
8 lines
147 B
Nix
final: prev:
|
|
{
|
|
nixos-search = {
|
|
frontend = import ./frontend { pkgs = prev; };
|
|
flake-info = import ./flake-info { pkgs = prev; };
|
|
};
|
|
}
|