├── .browserslistrc ├── .editorconfig ├── .envrc ├── .github └── workflows │ ├── ci.yml │ ├── flakehub-cache.yml │ ├── flakehub-publish-rolling.yml │ └── update-flake-lock.yml ├── .gitignore ├── .htmltest.external.yml ├── .htmltest.internal.yml ├── .npmrc ├── .prettierignore ├── .vale.ini ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── astro.config.mjs ├── flake.lock ├── flake.nix ├── icons └── close.svg ├── lychee.toml ├── netlify.toml ├── nix ├── shell │ └── example.nix └── templates │ ├── dev │ ├── cpp │ │ ├── flake.lock │ │ └── flake.nix │ ├── golang │ │ ├── flake.lock │ │ └── flake.nix │ ├── haskell │ │ ├── flake.lock │ │ └── flake.nix │ ├── javascript │ │ ├── flake.lock │ │ └── flake.nix │ ├── python │ │ ├── flake.lock │ │ └── flake.nix │ ├── rust │ │ ├── flake.lock │ │ └── flake.nix │ └── scala │ │ ├── flake.lock │ │ └── flake.nix │ └── pkg │ ├── cpp │ ├── .gitignore │ ├── flake.lock │ ├── flake.nix │ └── main.cpp │ ├── golang │ ├── .gitignore │ ├── cmd │ │ └── zero-to-nix-go │ │ │ └── main.go │ ├── flake.lock │ ├── flake.nix │ ├── go.mod │ └── go.sum │ ├── haskell │ ├── .gitignore │ ├── flake.lock │ ├── flake.nix │ ├── package.yaml │ ├── src │ │ └── Main.hs │ ├── stack.yaml │ └── zero-to-nix-haskell.cabal │ ├── javascript │ ├── .gitignore │ ├── flake.lock │ ├── flake.nix │ ├── index.html │ ├── package-lock.json │ └── package.json │ ├── python │ ├── .editorconfig │ ├── .gitignore │ ├── flake.lock │ ├── flake.nix │ ├── hello.py │ └── setup.py │ ├── rust │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── flake.lock │ ├── flake.nix │ ├── rust-toolchain.toml │ └── src │ │ └── main.rs │ └── scala │ ├── .gitignore │ ├── build.sbt │ ├── flake.lock │ ├── flake.nix │ ├── project │ ├── build.properties │ └── plugins.sbt │ └── src │ └── main │ └── scala │ └── Main.scala ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.config.cjs ├── public └── favicon.png ├── scripts ├── build-dev-templates.sh ├── build-example-dev-shells.sh ├── build-pkg-templates.sh ├── check-templates.sh ├── netlify-redirects.sh └── update-template-inputs.sh ├── src ├── assets │ └── css │ │ ├── main.css │ │ ├── prose.css │ │ ├── tailwind.css │ │ └── variables.css ├── components │ ├── Banner.astro │ ├── Breadcrumb.astro │ ├── CookieConsent.astro │ ├── Drawer.astro │ ├── DrawerToggler.astro │ ├── Dropdown.astro │ ├── ExternalSources.astro │ ├── Features.astro │ ├── FeedbackBar.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Grid2.astro │ ├── Grid3.astro │ ├── Head.astro │ ├── Header.astro │ ├── HeaderLink.astro │ ├── Hero.astro │ ├── HorizontalContainer.astro │ ├── HoverableExternalSourceLink.astro │ ├── HoverableLink.astro │ ├── Link.astro │ ├── Navbar.astro │ ├── NixTerms.astro │ ├── PageSurvey.tsx │ ├── Pagination.astro │ ├── Posthog.astro │ ├── QuickStart.astro │ ├── Related.astro │ ├── Separator.astro │ ├── Signup.astro │ ├── SignupModal.astro │ ├── Summary.astro │ ├── ThemeSwitcher.astro │ ├── VerticalContainer.astro │ └── mdx │ │ ├── A.astro │ │ ├── Admonition.astro │ │ ├── Brief.astro │ │ ├── H2.astro │ │ ├── H3.astro │ │ ├── H4.astro │ │ ├── Language.astro │ │ ├── Languages.astro │ │ ├── NixStorePath.astro │ │ └── SpecificLanguage.astro ├── content │ ├── briefs │ │ └── nix-installer-differences.mdx │ ├── collections.ts │ ├── concepts │ │ ├── caching.mdx │ │ ├── channels.mdx │ │ ├── closures.mdx │ │ ├── declarative.mdx │ │ ├── derivations.mdx │ │ ├── dev-env.mdx │ │ ├── ecosystem.mdx │ │ ├── flakehub.mdx │ │ ├── flakes.mdx │ │ ├── hermeticity.mdx │ │ ├── incremental-builds.mdx │ │ ├── nix-installer.mdx │ │ ├── nix-language.mdx │ │ ├── nix-store.mdx │ │ ├── nix.mdx │ │ ├── nixos.mdx │ │ ├── nixpkgs.mdx │ │ ├── package-management.mdx │ │ ├── packages.mdx │ │ ├── pinning.mdx │ │ ├── provenance.mdx │ │ ├── realisation.mdx │ │ ├── reproducibility.mdx │ │ ├── sandboxing.mdx │ │ └── system-specificity.mdx │ ├── config.ts │ ├── plain │ │ └── about.mdx │ └── start │ │ ├── 1.install.mdx │ │ ├── 2.nix-run.mdx │ │ ├── 3.nix-develop.mdx │ │ ├── 4.nix-build.mdx │ │ ├── 5.nix-search.mdx │ │ ├── 6.init-flake.mdx │ │ ├── 7.uninstall.mdx │ │ └── 8.learn-more.mdx ├── entrypoint.ts ├── env.d.ts ├── layouts │ └── Layout.astro ├── lib │ ├── content.ts │ └── utils.ts ├── pages │ ├── about.astro │ ├── concepts │ │ ├── [slug].astro │ │ └── index.astro │ ├── index.astro │ ├── llms-full.txt.ts │ ├── llms-small.txt.ts │ ├── llms.txt.ts │ └── start │ │ ├── [slug].astro │ │ └── index.astro ├── site.ts └── templates │ ├── llms-full.txt.hbs │ ├── llms-small.txt.hbs │ └── llms.txt.hbs ├── styles ├── DetSys │ ├── ability.yml │ ├── as-per.yml │ ├── eg.yml │ ├── however.yml │ ├── ie.yml │ ├── like-so.yml │ ├── the-following.yml │ └── very.yml └── config │ └── vocabularies │ └── Docs │ └── accept.txt ├── tailwind.config.ts └── tsconfig.json /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.5%, last 2 versions, Firefox ESR, not dead 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake . 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/flakehub-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.github/workflows/flakehub-cache.yml -------------------------------------------------------------------------------- /.github/workflows/flakehub-publish-rolling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.github/workflows/flakehub-publish-rolling.yml -------------------------------------------------------------------------------- /.github/workflows/update-flake-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.github/workflows/update-flake-lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.gitignore -------------------------------------------------------------------------------- /.htmltest.external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.htmltest.external.yml -------------------------------------------------------------------------------- /.htmltest.internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.htmltest.internal.yml -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist = true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.prettierignore -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/.vale.ini -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/flake.nix -------------------------------------------------------------------------------- /icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/icons/close.svg -------------------------------------------------------------------------------- /lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/lychee.toml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/netlify.toml -------------------------------------------------------------------------------- /nix/shell/example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/shell/example.nix -------------------------------------------------------------------------------- /nix/templates/dev/cpp/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/cpp/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/cpp/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/cpp/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/golang/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/golang/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/golang/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/golang/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/haskell/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/haskell/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/haskell/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/haskell/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/javascript/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/javascript/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/javascript/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/javascript/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/python/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/python/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/python/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/python/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/rust/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/rust/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/rust/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/rust/flake.nix -------------------------------------------------------------------------------- /nix/templates/dev/scala/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/scala/flake.lock -------------------------------------------------------------------------------- /nix/templates/dev/scala/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/dev/scala/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | # Nix artifacts 2 | result 3 | -------------------------------------------------------------------------------- /nix/templates/pkg/cpp/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/cpp/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/cpp/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/cpp/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/cpp/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello from Nix + C++!\n"; 5 | } 6 | -------------------------------------------------------------------------------- /nix/templates/pkg/golang/.gitignore: -------------------------------------------------------------------------------- 1 | # Nix artifacts 2 | result 3 | -------------------------------------------------------------------------------- /nix/templates/pkg/golang/cmd/zero-to-nix-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/golang/cmd/zero-to-nix-go/main.go -------------------------------------------------------------------------------- /nix/templates/pkg/golang/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/golang/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/golang/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/golang/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/golang/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/golang/go.mod -------------------------------------------------------------------------------- /nix/templates/pkg/golang/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/golang/go.sum -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/haskell/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/haskell/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/haskell/package.yaml -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/src/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/haskell/src/Main.hs -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/stack.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - . 3 | -------------------------------------------------------------------------------- /nix/templates/pkg/haskell/zero-to-nix-haskell.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/haskell/zero-to-nix-haskell.cabal -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/.gitignore -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/index.html -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/package-lock.json -------------------------------------------------------------------------------- /nix/templates/pkg/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/javascript/package.json -------------------------------------------------------------------------------- /nix/templates/pkg/python/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/.editorconfig -------------------------------------------------------------------------------- /nix/templates/pkg/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/.gitignore -------------------------------------------------------------------------------- /nix/templates/pkg/python/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/python/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/python/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/hello.py -------------------------------------------------------------------------------- /nix/templates/pkg/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/python/setup.py -------------------------------------------------------------------------------- /nix/templates/pkg/rust/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/.gitignore -------------------------------------------------------------------------------- /nix/templates/pkg/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/Cargo.lock -------------------------------------------------------------------------------- /nix/templates/pkg/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/Cargo.toml -------------------------------------------------------------------------------- /nix/templates/pkg/rust/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/rust/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/rust/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.64.0" 3 | -------------------------------------------------------------------------------- /nix/templates/pkg/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/rust/src/main.rs -------------------------------------------------------------------------------- /nix/templates/pkg/scala/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | result 3 | -------------------------------------------------------------------------------- /nix/templates/pkg/scala/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/scala/build.sbt -------------------------------------------------------------------------------- /nix/templates/pkg/scala/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/scala/flake.lock -------------------------------------------------------------------------------- /nix/templates/pkg/scala/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/scala/flake.nix -------------------------------------------------------------------------------- /nix/templates/pkg/scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.8.2 2 | -------------------------------------------------------------------------------- /nix/templates/pkg/scala/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/scala/project/plugins.sbt -------------------------------------------------------------------------------- /nix/templates/pkg/scala/src/main/scala/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/nix/templates/pkg/scala/src/main/scala/Main.scala -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/public/favicon.png -------------------------------------------------------------------------------- /scripts/build-dev-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/build-dev-templates.sh -------------------------------------------------------------------------------- /scripts/build-example-dev-shells.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/build-example-dev-shells.sh -------------------------------------------------------------------------------- /scripts/build-pkg-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/build-pkg-templates.sh -------------------------------------------------------------------------------- /scripts/check-templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/check-templates.sh -------------------------------------------------------------------------------- /scripts/netlify-redirects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/netlify-redirects.sh -------------------------------------------------------------------------------- /scripts/update-template-inputs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/scripts/update-template-inputs.sh -------------------------------------------------------------------------------- /src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/assets/css/main.css -------------------------------------------------------------------------------- /src/assets/css/prose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/assets/css/prose.css -------------------------------------------------------------------------------- /src/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/assets/css/tailwind.css -------------------------------------------------------------------------------- /src/assets/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/assets/css/variables.css -------------------------------------------------------------------------------- /src/components/Banner.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Banner.astro -------------------------------------------------------------------------------- /src/components/Breadcrumb.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Breadcrumb.astro -------------------------------------------------------------------------------- /src/components/CookieConsent.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/CookieConsent.astro -------------------------------------------------------------------------------- /src/components/Drawer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Drawer.astro -------------------------------------------------------------------------------- /src/components/DrawerToggler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/DrawerToggler.astro -------------------------------------------------------------------------------- /src/components/Dropdown.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Dropdown.astro -------------------------------------------------------------------------------- /src/components/ExternalSources.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/ExternalSources.astro -------------------------------------------------------------------------------- /src/components/Features.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Features.astro -------------------------------------------------------------------------------- /src/components/FeedbackBar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/FeedbackBar.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Grid2.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Grid2.astro -------------------------------------------------------------------------------- /src/components/Grid3.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Grid3.astro -------------------------------------------------------------------------------- /src/components/Head.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Head.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HeaderLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/HeaderLink.astro -------------------------------------------------------------------------------- /src/components/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Hero.astro -------------------------------------------------------------------------------- /src/components/HorizontalContainer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/HorizontalContainer.astro -------------------------------------------------------------------------------- /src/components/HoverableExternalSourceLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/HoverableExternalSourceLink.astro -------------------------------------------------------------------------------- /src/components/HoverableLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/HoverableLink.astro -------------------------------------------------------------------------------- /src/components/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Link.astro -------------------------------------------------------------------------------- /src/components/Navbar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Navbar.astro -------------------------------------------------------------------------------- /src/components/NixTerms.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/NixTerms.astro -------------------------------------------------------------------------------- /src/components/PageSurvey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/PageSurvey.tsx -------------------------------------------------------------------------------- /src/components/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Pagination.astro -------------------------------------------------------------------------------- /src/components/Posthog.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Posthog.astro -------------------------------------------------------------------------------- /src/components/QuickStart.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/QuickStart.astro -------------------------------------------------------------------------------- /src/components/Related.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Related.astro -------------------------------------------------------------------------------- /src/components/Separator.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Separator.astro -------------------------------------------------------------------------------- /src/components/Signup.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Signup.astro -------------------------------------------------------------------------------- /src/components/SignupModal.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/SignupModal.astro -------------------------------------------------------------------------------- /src/components/Summary.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/Summary.astro -------------------------------------------------------------------------------- /src/components/ThemeSwitcher.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/ThemeSwitcher.astro -------------------------------------------------------------------------------- /src/components/VerticalContainer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/VerticalContainer.astro -------------------------------------------------------------------------------- /src/components/mdx/A.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/A.astro -------------------------------------------------------------------------------- /src/components/mdx/Admonition.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/Admonition.astro -------------------------------------------------------------------------------- /src/components/mdx/Brief.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/Brief.astro -------------------------------------------------------------------------------- /src/components/mdx/H2.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/H2.astro -------------------------------------------------------------------------------- /src/components/mdx/H3.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/H3.astro -------------------------------------------------------------------------------- /src/components/mdx/H4.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/H4.astro -------------------------------------------------------------------------------- /src/components/mdx/Language.astro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/components/mdx/Languages.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/Languages.astro -------------------------------------------------------------------------------- /src/components/mdx/NixStorePath.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/NixStorePath.astro -------------------------------------------------------------------------------- /src/components/mdx/SpecificLanguage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/components/mdx/SpecificLanguage.astro -------------------------------------------------------------------------------- /src/content/briefs/nix-installer-differences.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/briefs/nix-installer-differences.mdx -------------------------------------------------------------------------------- /src/content/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/collections.ts -------------------------------------------------------------------------------- /src/content/concepts/caching.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/caching.mdx -------------------------------------------------------------------------------- /src/content/concepts/channels.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/channels.mdx -------------------------------------------------------------------------------- /src/content/concepts/closures.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/closures.mdx -------------------------------------------------------------------------------- /src/content/concepts/declarative.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/declarative.mdx -------------------------------------------------------------------------------- /src/content/concepts/derivations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/derivations.mdx -------------------------------------------------------------------------------- /src/content/concepts/dev-env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/dev-env.mdx -------------------------------------------------------------------------------- /src/content/concepts/ecosystem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/ecosystem.mdx -------------------------------------------------------------------------------- /src/content/concepts/flakehub.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/flakehub.mdx -------------------------------------------------------------------------------- /src/content/concepts/flakes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/flakes.mdx -------------------------------------------------------------------------------- /src/content/concepts/hermeticity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/hermeticity.mdx -------------------------------------------------------------------------------- /src/content/concepts/incremental-builds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/incremental-builds.mdx -------------------------------------------------------------------------------- /src/content/concepts/nix-installer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nix-installer.mdx -------------------------------------------------------------------------------- /src/content/concepts/nix-language.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nix-language.mdx -------------------------------------------------------------------------------- /src/content/concepts/nix-store.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nix-store.mdx -------------------------------------------------------------------------------- /src/content/concepts/nix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nix.mdx -------------------------------------------------------------------------------- /src/content/concepts/nixos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nixos.mdx -------------------------------------------------------------------------------- /src/content/concepts/nixpkgs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/nixpkgs.mdx -------------------------------------------------------------------------------- /src/content/concepts/package-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/package-management.mdx -------------------------------------------------------------------------------- /src/content/concepts/packages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/packages.mdx -------------------------------------------------------------------------------- /src/content/concepts/pinning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/pinning.mdx -------------------------------------------------------------------------------- /src/content/concepts/provenance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/provenance.mdx -------------------------------------------------------------------------------- /src/content/concepts/realisation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/realisation.mdx -------------------------------------------------------------------------------- /src/content/concepts/reproducibility.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/reproducibility.mdx -------------------------------------------------------------------------------- /src/content/concepts/sandboxing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/sandboxing.mdx -------------------------------------------------------------------------------- /src/content/concepts/system-specificity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/concepts/system-specificity.mdx -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/plain/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/plain/about.mdx -------------------------------------------------------------------------------- /src/content/start/1.install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/1.install.mdx -------------------------------------------------------------------------------- /src/content/start/2.nix-run.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/2.nix-run.mdx -------------------------------------------------------------------------------- /src/content/start/3.nix-develop.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/3.nix-develop.mdx -------------------------------------------------------------------------------- /src/content/start/4.nix-build.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/4.nix-build.mdx -------------------------------------------------------------------------------- /src/content/start/5.nix-search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/5.nix-search.mdx -------------------------------------------------------------------------------- /src/content/start/6.init-flake.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/6.init-flake.mdx -------------------------------------------------------------------------------- /src/content/start/7.uninstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/7.uninstall.mdx -------------------------------------------------------------------------------- /src/content/start/8.learn-more.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/content/start/8.learn-more.mdx -------------------------------------------------------------------------------- /src/entrypoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/entrypoint.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/lib/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/lib/content.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/concepts/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/concepts/[slug].astro -------------------------------------------------------------------------------- /src/pages/concepts/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/concepts/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/llms-full.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/llms-full.txt.ts -------------------------------------------------------------------------------- /src/pages/llms-small.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/llms-small.txt.ts -------------------------------------------------------------------------------- /src/pages/llms.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/llms.txt.ts -------------------------------------------------------------------------------- /src/pages/start/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/start/[slug].astro -------------------------------------------------------------------------------- /src/pages/start/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/pages/start/index.astro -------------------------------------------------------------------------------- /src/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/site.ts -------------------------------------------------------------------------------- /src/templates/llms-full.txt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/templates/llms-full.txt.hbs -------------------------------------------------------------------------------- /src/templates/llms-small.txt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/templates/llms-small.txt.hbs -------------------------------------------------------------------------------- /src/templates/llms.txt.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/src/templates/llms.txt.hbs -------------------------------------------------------------------------------- /styles/DetSys/ability.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/ability.yml -------------------------------------------------------------------------------- /styles/DetSys/as-per.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/as-per.yml -------------------------------------------------------------------------------- /styles/DetSys/eg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/eg.yml -------------------------------------------------------------------------------- /styles/DetSys/however.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/however.yml -------------------------------------------------------------------------------- /styles/DetSys/ie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/ie.yml -------------------------------------------------------------------------------- /styles/DetSys/like-so.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/like-so.yml -------------------------------------------------------------------------------- /styles/DetSys/the-following.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/the-following.yml -------------------------------------------------------------------------------- /styles/DetSys/very.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/DetSys/very.yml -------------------------------------------------------------------------------- /styles/config/vocabularies/Docs/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/styles/config/vocabularies/Docs/accept.txt -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeterminateSystems/zero-to-nix/HEAD/tsconfig.json --------------------------------------------------------------------------------