65 lines
1.5 KiB
Markdown
65 lines
1.5 KiB
Markdown
---
|
|
# https://vitepress.dev/reference/default-theme-home-page
|
|
layout: home
|
|
|
|
hero:
|
|
name: "NixiN"
|
|
text: "A webUI to configure NixOS machines"
|
|
tagline: by the Distrilab
|
|
image: ./logo-nix-clic.jpg
|
|
actions:
|
|
- theme: brand
|
|
text: Generate my NixOS configuration
|
|
link: /configure
|
|
- theme: alt
|
|
text: Documentation
|
|
link: /about
|
|
|
|
features:
|
|
- icon: 💫
|
|
title: Easy configuration
|
|
- icon: 📢
|
|
title: Ready for federation
|
|
- icon: ✌️
|
|
title: Self-Hostable
|
|
- icon: 📖
|
|
title: Open source
|
|
---
|
|
|
|
<script setup>
|
|
import { VPTeamMembers } from 'vitepress/theme'
|
|
|
|
const members = [
|
|
{
|
|
avatar: 'https://distrilab.fr/files/Equipe_12b_20211010003350_20211010003817.jpg',
|
|
name: 'Fabrice Bellamy',
|
|
title: 'System Administration',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/Lab-8916100448256' },
|
|
{ icon: 'mastodon', link: 'https://mastodon.cc' },
|
|
{ icon: 'github', link: 'https://gitlab.com/lab.8916100448256' }
|
|
]
|
|
},
|
|
{
|
|
avatar: 'https://avatars.githubusercontent.com/u/124845?v=4',
|
|
name: 'Florian Schmitt',
|
|
title: 'Web Development',
|
|
links: [
|
|
{ icon: 'github', link: 'https://github.com/mrflos' },
|
|
{ icon: 'mastodon', link: 'https://mastodon.cc/mrflos' }
|
|
]
|
|
}
|
|
]
|
|
</script>
|
|
<br />
|
|
<br />
|
|
|
|
## About
|
|
|
|
NixiN is a...
|
|
|
|
## Our Team
|
|
|
|
We are french engineers contributing to open sources projects and members of [CHATONS](https://chatons.org) french alternative web hosting.
|
|
|
|
<VPTeamMembers size="small" :members="members" />
|