TCJGOE7NJ7VVHHER4LEZGWTYY4CPTDUH344USDYU37IX4VT4UFVAC name: "Nix CI"on:pull_request:paths-ignore:- "README.md"- "LICENSE.md"push:paths-ignore:- "README.md"- "LICENSE.md"workflow_dispatch:jobs:build:name: "Build: ${{ matrix.host }}"runs-on: self-hostedpermissions:contents: readid-token: writestrategy:fail-fast: falsematrix:host:- "date"- "kiwi"- "pear"- "plum"- "yuzu"# - "lime" # Can't be done without an aarch64-darwin runner.# I will look into containers or something later - for now it's not that important.steps:- name: "Checkout"uses: https://github.com/actions/checkout@v5- name: "Build configuration for ${{ matrix.host }}"run: |echo "Building NixOS configuration for: ${{ matrix.host }}"nix build .#nixosConfigurations.${{ matrix.host }}.config.system.build.toplevel --accept-flake-config --builders "" --fallback