Skip to content

Disable pipe operator in home and warnings about repo being dirty #76

Disable pipe operator in home and warnings about repo being dirty

Disable pipe operator in home and warnings about repo being dirty #76

Workflow file for this run

name: Validate Nix Flake
on:
workflow_dispatch:
push:
paths:
- "**.nix"
- "flake.nix"
- "flake.lock"
- ".github/workflows/check.yaml"
jobs:
check-flake:
name: Check Flake Setup
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 1
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
logger: pretty
- name: Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v4
- name: Check Flake
run: |
NIXPKGS_ALLOW_INSECURE=1
nix flake check
--no-build
<<<<<<< HEAD

Check failure on line 36 in .github/workflows/check.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yaml

Invalid workflow file

You have an error in your yaml syntax on line 36
--impure
# --show-trace
=======
# --show-trace
--impure
>>>>>>> 2aa9948 (Try flake checker again)
# run: NIXPKGS_ALLOW_INSECURE=1 nix flake check --no-build --accept-flake-config --impure