This repository was archived by the owner on Feb 13, 2026. It is now read-only.
馃敡鈿★笍 Experiment with kernel params to combat hard-freezing #51
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Nix: validate flake" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - "**.nix" | |
| - "**.lock" | |
| - ".github/workflows/validate.yml" | |
| jobs: | |
| check-flake: | |
| name: Validate x86_64-linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Lix | |
| uses: ./.github/actions/install-lix | |
| - name: Validate Flake | |
| run: nix flake check |