Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions overview/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -184,18 +184,38 @@ let

# The top-level overview for all projects
index = pkgs.writeText "index.html" ''
${heading 1 "NGIpkgs Overview"}
# NGIpgks

NGIpkgs is collection of software applications funded by the <a href="https://www.ngi.eu/ngi-projects/ngi-zero/">Next Generation Internet</a> initiative and packaged for <a href="https://nixos.org">NixOS</a>.

This service is still <strong>experimental</strong> and under heavy development.
Don't expect anything specific to work yet:

- The package collection is far incomplete
- Many packages lack crucial components
- There are no instructions for getting started
Comment thread
fricklerhandwerk marked this conversation as resolved.
- How software and the corresponding Nix expressions are exposed is subject to change

More information about the project:

- [Source code](https://github.com/ngi-nix/ngipkgs)
- [Issue tracker](https://github.com/ngi-nix/summer-of-nix/issues/41)
- [Nix@NGI team](https://nixos.org/community/teams/ngi/)

---

${render.projects.many projects}

<hr>
---

<footer>Version: ${version}, Last Modified: ${lastModified}</footer>
'';

# Every HTML page that we generate
pages =
{
"index.html" = {
pagetitle = "NGIpkgs Overview";
pagetitle = "NGIpkgs software repository";
html = index;
};
}
Expand Down