Personal Nix flake
nixos home-manager nix
1
fork

Configure Feed

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

chore: Pin CI runners to run on specific ubuntu version

+4 -4
+1 -1
.github/workflows/build.yml
··· 18 18 jobs: 19 19 inventory: 20 20 name: Build inventory 21 - runs-on: ubuntu-latest 21 + runs-on: ubuntu-24.04 22 22 outputs: 23 23 x86_64-linux: ${{ steps.matrix.outputs.x86_64-linux }} 24 24 aarch64-linux: ${{ steps.matrix.outputs.aarch64-linux }}
+1 -1
.github/workflows/check.yml
··· 19 19 jobs: 20 20 inventory: 21 21 name: Run flake checks 22 - runs-on: ubuntu-latest 22 + runs-on: ubuntu-24.04 23 23 steps: 24 24 - uses: actions/checkout@v4 25 25 - 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