NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

chore: update GitHub Actions workflows on flakes-related CI

Also updated the badge and workflow history URLs in the README.

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+12 -8
+1
.github/workflows/flakehub-publish-rolling.yml
··· 3 3 push: 4 4 branches: 5 5 - "main" 6 + workflow_dispatch: 6 7 jobs: 7 8 flakehub-publish: 8 9 runs-on: "ubuntu-latest"
+9 -6
.github/workflows/update-flakes.yml .github/workflows/flake-ci.yml
··· 1 - name: Nix Flake Builds 1 + name: Nix Flake Builds CI 2 2 3 3 on: 4 4 schedule: ··· 15 15 runs-on: ubuntu-latest 16 16 steps: 17 17 - uses: actions/checkout@v4 18 - 18 + 19 19 - name: Setup Deterinate Nix 20 20 uses: DeterminateSystems/nix-installer-action@main 21 21 with: 22 22 determinate: true 23 + 24 + - name: Run checks 25 + run: nix flake check 23 26 24 27 - name: Update flake 25 28 run: | ··· 65 68 nix build .#nixosConfigurations.recoverykit-amd64.config.system.build.isoImage --verbose --show-trace 66 69 cp result/iso/*.iso ./dist/ -rv 67 70 echo ::endgroup 68 - 71 + 69 72 - name: Upload as artifact 70 73 uses: actions/upload-artifact@v4 71 74 with: ··· 107 110 run: | 108 111 docker pull ghcr.io/andreijiroh-dev/nixops-config/rpi-sd-imager:${{env.PREBUILD_TAG}} 109 112 docker tag ghcr.io/andreijiroh-dev/nixops-config/rpi-sd-imager:${{env.PREBUILD_TAG}} ghcr.io/andreijiroh-dev/nixops-config/rpi-sd-imager:dev 110 - 113 + 111 114 - name: Build the SD image 112 115 run: cd hosts/raspi-base && docker compose up 113 - 116 + 114 117 - name: Upload as artifact 115 118 uses: actions/upload-artifact@v4 116 119 with: 117 120 name: nixos-raspi-sd-img 118 - path: hosts/raspi-base/output 121 + path: hosts/raspi-base/output
+2 -2
README.md
··· 10 10 11 11 | Workflow Name and Type | CI Platform | Badge/Link | 12 12 | --- | --- | --- | 13 - | Nix Flake Builds (push) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml/badge.svg)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml) | 14 - | Nix Flake Builds (schedule, every 06:30 UTC Saturday) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml/badge.svg?event=schedule)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml) | 13 + | Nix Flake Builds (push) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/flake-ci.yml/badge.svg)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/flake-ci.yml) | 14 + | Nix Flake Builds (schedule, every 06:30 UTC Saturday) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/flake-ci.yml/badge.svg?event=schedule)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/flake-ci.yml) | 15 15 16 16 ## Mirrors 17 17