2023-06-23 08:33:04 +02:00
|
|
|
---
|
|
|
|
# https://vitepress.dev/reference/default-theme-home-page
|
|
|
|
layout: home
|
|
|
|
|
2023-07-08 06:17:04 +02:00
|
|
|
titleTemplate: "Home Page"
|
2023-06-23 08:33:04 +02:00
|
|
|
|
|
|
|
hero:
|
|
|
|
name: "NixOS & Flakes Book"
|
|
|
|
text: "An unofficial book for beginners"
|
2023-07-09 11:32:32 +02:00
|
|
|
tagline: Want to know NixOS & Flakes in detail? Looking for a beginner-friendly tutorial? Then you've come to the right place!
|
2023-07-08 06:17:04 +02:00
|
|
|
image:
|
2023-07-08 06:21:29 +02:00
|
|
|
src: /logo.png
|
2023-07-08 06:17:04 +02:00
|
|
|
alt: NixOS Flakes
|
2023-06-23 08:33:04 +02:00
|
|
|
actions:
|
2023-07-28 09:55:48 +02:00
|
|
|
- theme: brand
|
|
|
|
text: Preface
|
|
|
|
link: /preface.md
|
2023-06-23 08:33:04 +02:00
|
|
|
- theme: brand
|
|
|
|
text: Get Started
|
2023-06-23 12:05:06 +02:00
|
|
|
link: /introduction/index.md
|
2023-06-23 08:33:04 +02:00
|
|
|
- theme: alt
|
|
|
|
text: View on GitHub
|
|
|
|
link: https://github.com/ryan4yin/nixos-and-flakes-book
|
|
|
|
# features:
|
|
|
|
# - title: Feature A
|
|
|
|
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
|
|
# - title: Feature B
|
|
|
|
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
|
|
# - title: Feature C
|
|
|
|
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
|
|
|
|
---
|
2023-08-14 16:28:47 +02:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--vp-home-hero-name-color: transparent;
|
|
|
|
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
|
|
|
|
|
|
|
|
--vp-home-hero-image-background-image: linear-gradient(-60deg, #bd34fe 40%, #47caff 60%);
|
|
|
|
--vp-home-hero-image-filter: blur(40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 640px) {
|
|
|
|
:root {
|
|
|
|
--vp-home-hero-image-filter: blur(56px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 960px) {
|
|
|
|
:root {
|
|
|
|
--vp-home-hero-image-filter: blur(72px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|