Welcome to the new unified Determinate docs experience!
FlakeHubGetting started

Getting started with FlakeHub

In order to get started with FlakeHub, all you need is to install Nix on your machine, create a Nix flake

Install Nix

Use the Determinate Nix Installer for a rock solid and fast experience:

curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | \
  sh -s -- install --determinate

We also have a GitHub Action for installing Nix:

on:
  pull_request:
  push:
    branches: [main]
 
jobs:
  nix-build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Install Nix
        uses: DeterminateSystems/nix-installer-action@main
      - name: Run `nix build`
        run: nix build .