Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Merge pull request #26 from lpchaim/develop

chore: Merge branch 'develop' into main

authored by

Luna Perroni and committed by
GitHub
d5ed37dd 418621e5

+10 -13
+7 -9
.github/workflows/build.yml
··· 2 2 3 3 on: 4 4 workflow_dispatch: 5 - push: 6 - branches: 7 - - main 8 - - develop 9 - paths: 10 - - 'flake.nix' 11 - - 'flake.lock' 12 - - 'nix/**' 5 + workflow_run: 6 + workflows: 7 + - Check 8 + types: 9 + - completed 13 10 14 11 concurrency: 15 12 group: ${{ github.workflow }}-${{ github.ref_name }} ··· 18 15 jobs: 19 16 inventory: 20 17 name: Build inventory 21 - runs-on: ubuntu-latest 18 + if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }} 19 + runs-on: ubuntu-24.04 22 20 outputs: 23 21 x86_64-linux: ${{ steps.matrix.outputs.x86_64-linux }} 24 22 aarch64-linux: ${{ steps.matrix.outputs.aarch64-linux }}
+1 -2
.github/workflows/check.yml
··· 6 6 branches: 7 7 - main 8 8 - develop 9 - - update-flake-inputs 10 9 paths: 11 10 - 'flake.nix' 12 11 - 'flake.lock' ··· 19 18 jobs: 20 19 inventory: 21 20 name: Run flake checks 22 - runs-on: ubuntu-latest 21 + runs-on: ubuntu-24.04 23 22 steps: 24 23 - uses: actions/checkout@v4 25 24 - uses: ./.github/actions/nix-setup
+1 -1
.github/workflows/release-please.yml
··· 11 11 12 12 jobs: 13 13 release-please: 14 - runs-on: ubuntu-latest 14 + runs-on: ubuntu-24.04 15 15 steps: 16 16 - uses: googleapis/release-please-action@v4 17 17 with:
+1 -1
.github/workflows/update-flake.yml
··· 16 16 jobs: 17 17 update: 18 18 name: Update flake inputs 19 - runs-on: ubuntu-latest 19 + runs-on: ubuntu-24.04 20 20 steps: 21 21 - name: Checkout repository 22 22 uses: actions/checkout@v4